pub trait Asyncify {
    type AsyncWrapper<S>: AsyncWrapper<S>;

    // Provided methods
    fn into_async(self) -> Self::AsyncWrapper<Self>
       where Self: Sized { ... }
    fn as_async(&mut self) -> Self::AsyncWrapper<&mut Self> { ... }
}

Required Associated Types§

Provided Methods§

source

fn into_async(self) -> Self::AsyncWrapper<Self>
where Self: Sized,

source

fn as_async(&mut self) -> Self::AsyncWrapper<&mut Self>

Object Safety§

This trait is not object safe.

Implementors§