pub enum TlsStream<T> {
    Client(TlsStream<T>),
    Server(TlsStream<T>),
}
Expand description

Unified TLS stream type

This abstracts over the inner client::TlsStream and server::TlsStream, so you can use a single type to keep both client- and server-initiated TLS-encrypted connections.

Variants

Client(TlsStream<T>)

Server(TlsStream<T>)

Implementations

Trait Implementations

Extracts the raw file descriptor. Read more

Attempt to read from the AsyncRead into buf. Read more

Attempt to read from the AsyncRead into bufs using vectored IO operations. Read more

Attempt to write bytes from buf into the object. Read more

Attempt to flush the object, ensuring that any buffered data reach their destination. Read more

Attempt to close the object. Read more

Attempt to write bytes from bufs into the object using vectored IO operations. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.