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

pub trait SslClient<T = HttpStream> where
    T: NetworkStream + Clone + Send
{ type Stream: NetworkStream + Clone + Send; pub fn wrap_client(
        &self,
        stream: T,
        host: &str
    ) -> Result<Self::Stream, Error>; }

An abstraction to allow any SSL implementation to be used with client-side HttpsStreams.

Associated Types

type Stream: NetworkStream + Clone + Send[src]

The protected stream.

Loading content...

Required methods

pub fn wrap_client(&self, stream: T, host: &str) -> Result<Self::Stream, Error>[src]

Wrap a client stream with SSL.

Loading content...

Implementations on Foreign Types

impl SslClient<HttpStream> for TlsClient

type Stream = WrappedStream<ClientSession, HttpStream>

Loading content...

Implementors

Loading content...