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, &ServerSession)
pub fn get_mut(&mut self) -> (&mut IO, &mut ServerSession)
pub fn into_inner(self) -> (IO, ServerSession)
Trait Implementations§
Source§impl<IO> AsyncRead for TlsStream<IO>
impl<IO> AsyncRead for TlsStream<IO>
Source§fn poll_read(
self: Pin<&mut TlsStream<IO>>,
cx: &mut Context<'_>,
buf: &mut [u8],
) -> Poll<Result<usize, Error>>
fn poll_read( self: Pin<&mut TlsStream<IO>>, cx: &mut Context<'_>, buf: &mut [u8], ) -> Poll<Result<usize, Error>>
Source§unsafe fn prepare_uninitialized_buffer(
&self,
buf: &mut [MaybeUninit<u8>],
) -> bool
unsafe fn prepare_uninitialized_buffer( &self, buf: &mut [MaybeUninit<u8>], ) -> bool
Prepares an uninitialized buffer to be safe to pass to
read. Returns
true if the supplied buffer was zeroed out. Read moreSource§impl<IO> AsyncWrite for TlsStream<IO>
impl<IO> AsyncWrite for TlsStream<IO>
Source§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.
Source§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
Auto 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> UnsafeUnpin for TlsStream<IO>where
IO: UnsafeUnpin,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more