pub fn tls_stream_from_existing_tls_stream<S: Connect>(
    stream: AsyncIoTokioAsStd<TokioTlsStream<AsyncIoStdAsTokio<S>>>,
    peer_addr: SocketAddr
) -> (TlsStream<AsyncIoStdAsTokio<S>>, BufStreamHandle)
Expand description

Initializes a TlsStream with an existing tokio_tls::TlsStream.

This is intended for use with a TlsListener and Incoming connections