Trait rocket::http::hyper::net::SslClient[][src]

pub trait SslClient<T = HttpStream> where
    T: NetworkStream + Send + Clone
{ type Stream: NetworkStream + Send + Clone; 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.

Associated Types

The protected stream.

Required methods

Wrap a client stream with SSL.

Implementors