From 52ed004b9c25fcba96aade91baf455f49355d000 Mon Sep 17 00:00:00 2001 From: Philip Wales Date: Thu, 6 Jan 2022 15:45:41 -0600 Subject: [PATCH] Derive Debug for ProxyStream Needed if you want to make an HttpsConnector of a ProxyConnector Related: https://github.com/sfackler/hyper-native-tls/issues/1 --- src/stream.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stream.rs b/src/stream.rs index 4f45be6..6133e49 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -21,6 +21,7 @@ pub type TlsStream = RustlsStream; pub type TlsStream = OpenSslStream; /// A Proxy Stream wrapper +#[derive(Debug)] pub enum ProxyStream { NoProxy(R), Regular(R),