Skip to main content

TlsStream

Struct 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>

Source

pub fn get_ref(&self) -> (&IO, &ServerSession)

Source

pub fn get_mut(&mut self) -> (&mut IO, &mut ServerSession)

Source

pub fn into_inner(self) -> (IO, ServerSession)

Trait Implementations§

Source§

impl<IO> AsyncRead for TlsStream<IO>
where IO: AsyncRead + AsyncWrite + Unpin,

Source§

fn poll_read( self: Pin<&mut TlsStream<IO>>, cx: &mut Context<'_>, buf: &mut [u8], ) -> Poll<Result<usize, Error>>

Attempts to read from the AsyncRead into buf. Read more
Source§

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 more
Source§

fn poll_read_buf<B>( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut B, ) -> Poll<Result<usize, Error>>
where B: BufMut, Self: Sized,

Pulls some bytes from this source into the specified BufMut, returning how many bytes were read. Read more
Source§

impl<IO> AsyncWrite for TlsStream<IO>
where IO: AsyncRead + AsyncWrite + Unpin,

Source§

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>>

Attempts to flush the object, ensuring that any buffered data reach their destination. Read more
Source§

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
Source§

fn poll_write_buf<B>( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut B, ) -> Poll<Result<usize, Error>>
where B: Buf, Self: Sized,

Writes a Buf into this value, returning how many bytes were written. Read more
Source§

impl<IO> Debug for TlsStream<IO>
where IO: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. 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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.