[][src]Struct redis::aio::async_std::AsyncStdWrapped

pub struct AsyncStdWrapped<T> { /* fields omitted */ }
This is supported on crate features aio and async-std-comp only.

Wraps the async_std AsyncRead/AsyncWrite in order to implement the required the tokio traits for it

Trait Implementations

impl<T> AsyncRead for AsyncStdWrapped<T> where
    T: Read
[src]

impl<T> AsyncWrite for AsyncStdWrapped<T> where
    T: Write
[src]

impl<'__pin, T> Unpin for AsyncStdWrapped<T> where
    __Origin<'__pin, T>: Unpin
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for AsyncStdWrapped<T> where
    T: RefUnwindSafe

impl<T> Send for AsyncStdWrapped<T> where
    T: Send

impl<T> Sync for AsyncStdWrapped<T> where
    T: Sync

impl<T> UnwindSafe for AsyncStdWrapped<T> where
    T: UnwindSafe

Blanket Implementations

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

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

impl<S> AsyncStream for S where
    S: AsyncRead + AsyncWrite
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,