Skip to content

Commit f9ef930

Browse files
committed
Fix missing dyn warning
1 parent bd4f290 commit f9ef930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/connector.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ where
110110

111111
/// A Future representing work to connect to a URL, and a TLS handshake.
112112
pub struct HttpsConnecting<T>(
113-
Box<Future<Item = (MaybeHttpsStream<T>, connect::Connected), Error = io::Error> + Send>,
113+
Box<dyn Future<Item = (MaybeHttpsStream<T>, connect::Connected), Error = io::Error> + Send>,
114114
);
115115

116116
impl<T> Future for HttpsConnecting<T> {

0 commit comments

Comments
 (0)