logo
pub trait IntoTlsConfigStream<C>: Send + 'static {
    type Stream: Stream<Item = C> + Send + 'static;
    fn into_stream(self) -> IoResult<Self::Stream>;
}
Expand description

Represents a type that can convert into tls config stream.

Associated Types

Represents a tls config stream.

Required methods

Consume itself and return tls config stream.

Implementors