Sendable

Trait Sendable 

Source
pub trait Sendable<U> {
    // Required method
    fn send<'async_trait>(
        self,
    ) -> Pin<Box<dyn Future<Output = Result<U, ErrorWrapper>> + Send + 'async_trait>>
       where Self: 'async_trait;
}

Required Methods§

Source

fn send<'async_trait>( self, ) -> Pin<Box<dyn Future<Output = Result<U, ErrorWrapper>> + Send + 'async_trait>>
where Self: 'async_trait,

Implementors§