pub type ClientStream<S> = Stream<S, TlsStream<S>>;
Type alias for the stream type of the client_async() functions.
client_async()
enum ClientStream<S> { Plain(S), Tls(TlsStream<S>), }
Unencrypted socket stream.
Encrypted socket stream.