Struct futures_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, &ServerSession)
pub fn get_mut(&mut self) -> (&mut IO, &mut ServerSession)
pub fn into_inner(self) -> (IO, ServerSession)
Trait Implementations
sourceimpl<IO> AsyncRead for TlsStream<IO> where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> AsyncRead for TlsStream<IO> where
IO: AsyncRead + AsyncWrite + Unpin,
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<()>>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more