Trait RebuildOrTest

Source
pub trait RebuildOrTest {
    type Error;

    // Required method
    fn rebuild_or_test<'life0, 'life1, 'async_trait>(
        &'life0 self,
        runner: &'life1 dyn CommandRunner,
    ) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Associated Types§

Required Methods§

Source

fn rebuild_or_test<'life0, 'life1, 'async_trait>( &'life0 self, runner: &'life1 dyn CommandRunner, ) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§