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

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

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

Associated Types

type Stream: NetworkStream + Clone + Send[src]

The protected stream.

Loading content...

Required methods

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

Wrap a server stream with SSL.

Loading content...

Implementations on Foreign Types

impl SslServer<HttpStream> for TlsServer

type Stream = WrappedStream<ServerSession, HttpStream>

Loading content...

Implementors

Loading content...