Struct AsyncTlsStream
pub struct AsyncTlsStream<IO> { /* private fields */ }
Expand description
A wrapper around an underlying raw stream which implements the TLS or SSL protocol.
Implementations§
Trait Implementations§
§impl<IO> AsyncWrite for TlsStream<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> AsyncWrite for TlsStream<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
§fn poll_write(
self: Pin<&mut TlsStream<IO>>,
cx: &mut Context<'_>,
buf: &[u8],
) -> Poll<Result<usize, Error>>
fn poll_write( self: Pin<&mut TlsStream<IO>>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize, Error>>
Note: that it does not guarantee the final data to be sent.
To be cautious, you must manually call flush
.
§fn poll_flush(
self: Pin<&mut TlsStream<IO>>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Error>>
fn poll_flush( self: Pin<&mut TlsStream<IO>>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>
Attempts to flush the object, ensuring that any buffered data reach
their destination. Read more
§fn poll_shutdown(
self: Pin<&mut TlsStream<IO>>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Error>>
fn poll_shutdown( self: Pin<&mut TlsStream<IO>>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>
Initiates or attempts to shut down this writer, returning success when
the I/O connection has completely shut down. Read more
§fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>],
) -> Poll<Result<usize, Error>>
fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>], ) -> Poll<Result<usize, Error>>
Like
poll_write
, except that it writes from a slice of buffers. Read more§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
Determines if this writer has an efficient
poll_write_vectored
implementation. Read moreAuto Trait Implementations§
impl<IO> Freeze for TlsStream<IO>where
IO: Freeze,
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