Trait mz_testdrive::action::Run

source ·
pub(crate) trait Run {
    // Required method
    fn run<'life0, 'async_trait>(
        self,
        state: &'life0 mut State
    ) -> Pin<Box<dyn Future<Output = Result<ControlFlow, PosError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn run<'life0, 'async_trait>( self, state: &'life0 mut State ) -> Pin<Box<dyn Future<Output = Result<ControlFlow, PosError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§