Trait hyper::net::SslServer

source ·
pub trait SslServer<T: NetworkStream + Send + Clone = HttpStream> {
    type Stream: NetworkStream + Send + Clone;

    fn wrap_server(&self, stream: T) -> Result<Self::Stream>;
}
Expand description

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

Required Associated Types§

The protected stream.

Required Methods§

Wrap a server stream with SSL.

Implementors§