Enum futures_rustls::TlsStream [−][src]
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
impl<T> TlsStream<T>
[src]
impl<T> TlsStream<T>
[src]Trait Implementations
impl<T> AsyncWrite for TlsStream<T> where
T: AsyncRead + AsyncWrite + Unpin,
[src]
impl<T> AsyncWrite for TlsStream<T> where
T: AsyncRead + AsyncWrite + Unpin,
[src]fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize>>
[src]
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
[src]
fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
[src]
pub fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>]
) -> Poll<Result<usize, Error>>
[src]
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>]
) -> Poll<Result<usize, Error>>
Auto Trait Implementations
impl<T> !RefUnwindSafe for TlsStream<T>
impl<T> Send for TlsStream<T> where
T: Send,
T: Send,
impl<T> Sync for TlsStream<T> where
T: Sync,
T: Sync,
impl<T> Unpin for TlsStream<T> where
T: Unpin,
T: Unpin,