[][src]Struct async_tls_lite::TlsStream

pub struct TlsStream<S, IO> { /* fields omitted */ }

Implementations

impl<S, IO> TlsStream<S, IO>[src]

pub fn get_mut(&mut self) -> (&mut S, &mut IO)[src]

pub fn get_ref(&self) -> (&S, &IO)[src]

pub fn into_inner(self) -> (S, IO)[src]

Trait Implementations

impl<S, IO> AsyncRead for TlsStream<S, IO> where
    S: Session + Unpin,
    IO: AsyncRead + AsyncWrite + Unpin
[src]

impl<S, IO> AsyncWrite for TlsStream<S, IO> where
    S: Session + Unpin,
    IO: AsyncRead + AsyncWrite + Unpin
[src]

Auto Trait Implementations

impl<S, IO> RefUnwindSafe for TlsStream<S, IO> where
    IO: RefUnwindSafe,
    S: RefUnwindSafe

impl<S, IO> Send for TlsStream<S, IO> where
    IO: Send,
    S: Send

impl<S, IO> Sync for TlsStream<S, IO> where
    IO: Sync,
    S: Sync

impl<S, IO> Unpin for TlsStream<S, IO> where
    S: Unpin

impl<S, IO> UnwindSafe for TlsStream<S, IO> where
    IO: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<R> AsyncReadExt for R where
    R: AsyncRead + ?Sized
[src]

impl<W> AsyncWriteExt for W where
    W: AsyncWrite + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.