UnwrappedAsyncRec

Trait UnwrappedAsyncRec 

Source
pub trait UnwrappedAsyncRec<'a, T>:
    Future<Output = AsyncRec<'a, T>>
    + Send
    + Sync
    + 'a {
    // Provided method
    async fn go(self) -> T
       where Self: Sized { ... }
}

Provided Methods§

Source

async fn go(self) -> T
where Self: Sized,

Implementors§

Source§

impl<'a, T, F: Future<Output = AsyncRec<'a, T>> + Send + Sync + 'a> UnwrappedAsyncRec<'a, T> for F