Pause

Trait Pause 

Source
pub trait Pause {
    // Required method
    fn pause<'life0, 'async_trait>(
        &'life0 self,
        at_time: Option<Duration>,
    ) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn pause<'life0, 'async_trait>( &'life0 self, at_time: Option<Duration>, ) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§