pub trait SslClient<T = HttpStream>{
type Stream: NetworkStream + Send + Clone;
// Required method
fn wrap_client(&self, stream: T, host: &str) -> Result<Self::Stream, Error>;
}
Expand description
An abstraction to allow any SSL implementation to be used with client-side HttpsStreams.
Required Associated Types§
sourcetype Stream: NetworkStream + Send + Clone
type Stream: NetworkStream + Send + Clone
The protected stream.