pub struct TlsStream<IO> { /* private fields */ }
Expand description
The server end of a TLS connection. Can be used like any other bidirectional IO stream. Wraps the underlying TCP stream.
Trait Implementations§
source§impl<IO> AsyncRead for TlsStream<IO>
impl<IO> AsyncRead for TlsStream<IO>
source§impl<IO> AsyncWrite for TlsStream<IO>
impl<IO> AsyncWrite for TlsStream<IO>
source§fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize>>
fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8] ) -> Poll<Result<usize>>
Attempt to write bytes from
buf
into the object. Read moresource§fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Attempt to flush the object, ensuring that any buffered data reach
their destination. Read more
Auto Trait Implementations§
impl<IO> !RefUnwindSafe for TlsStream<IO>
impl<IO> Send for TlsStream<IO>where
IO: Send,
impl<IO> Sync for TlsStream<IO>where
IO: Sync,
impl<IO> Unpin for TlsStream<IO>where
IO: Unpin,
impl<IO> !UnwindSafe for TlsStream<IO>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more