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§
source§impl<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§
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>>
Note: that it does not guarantee the final data to be sent.
To be cautious, you must manually call flush
.
source§fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>]
) -> Poll<Result<usize>>
fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>] ) -> Poll<Result<usize>>
Note: that it does not guarantee the final data to be sent.
To be cautious, you must manually call flush
.
source§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