[][src]Struct tokio_native_tls::AllowStd

pub struct AllowStd<S> { /* fields omitted */ }

An intermediate wrapper for the inner stream S.

Implementations

impl<S> AllowStd<S>[src]

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

Returns a shared reference to the inner stream.

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

Returns a mutable reference to the inner stream.

Trait Implementations

impl<S: Debug> Debug for AllowStd<S>[src]

impl<S> Read for AllowStd<S> where
    S: AsyncRead + Unpin
[src]

impl<S: Send> Send for AllowStd<S>[src]

impl<S: Sync> Sync for AllowStd<S>[src]

impl<S> Write for AllowStd<S> where
    S: AsyncWrite + Unpin
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for AllowStd<S> where
    S: RefUnwindSafe
[src]

impl<S> Unpin for AllowStd<S> where
    S: Unpin
[src]

impl<S> UnwindSafe for AllowStd<S> where
    S: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?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.