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
type Stream: NetworkStream + Send + Clone
[src]
type Stream: NetworkStream + Send + Clone
[src]The protected stream.
Required methods
Implementations on Foreign Types
impl SslClient<HttpStream> for TlsClient
impl SslClient<HttpStream> for TlsClient
type Stream = WrappedStream<ClientSession, HttpStream>
pub fn wrap_client(
&self,
stream: HttpStream,
host: &str
) -> Result<WrappedStream<ClientSession, HttpStream>, Error>
&self,
stream: HttpStream,
host: &str
) -> Result<WrappedStream<ClientSession, HttpStream>, Error>