pub trait StatusWriter {
    // Required method
    fn set_status<'life0, 'async_trait>(
        &'life0 mut self,
        status: Status
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn set_status<'life0, 'async_trait>( &'life0 mut self, status: Status ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Sets the blocks status.

Implementors§