Trait RunTestsWithCoverage

Source
pub trait RunTestsWithCoverage {
    type Report;
    type Error;

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

Required Associated Types§

Required Methods§

Source

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

Implementors§

Source§

impl RunTestsWithCoverage for CrateHandle

Source§

impl<P, H> RunTestsWithCoverage for Workspace<P, H>
where H: CrateHandleInterface<P>, P: for<'async_trait> From<PathBuf> + for<'async_trait> AsRef<Path> + for<'async_trait> Send + for<'async_trait> Sync + 'async_trait,