Struct tokio_rustls::server::TlsStream
source · [−]pub struct TlsStream<IO> { /* private fields */ }
Expand description
A wrapper around an underlying raw stream which implements the TLS or SSL protocol.
Implementations
sourceimpl<IO> TlsStream<IO>
impl<IO> TlsStream<IO>
pub fn get_ref(&self) -> (&IO, &ServerConnection)
pub fn get_mut(&mut self) -> (&mut IO, &mut ServerConnection)
pub fn into_inner(self) -> (IO, ServerConnection)
Trait Implementations
sourceimpl<IO> AsyncWrite for TlsStream<IO> where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> AsyncWrite for TlsStream<IO> where
IO: AsyncRead + AsyncWrite + Unpin,
sourcefn 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>>
Note: that it does not guarantee the final data to be sent.
To be cautious, you must manually call flush
.
sourcefn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Attempts to flush the object, ensuring that any buffered data reach their destination. Read more
sourcefn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more
sourcefn 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
sourcefn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
Determines if this writer has an efficient poll_write_vectored
implementation. 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more