Trait GetTestFiles

Source
pub trait GetTestFiles {
    // Required method
    fn test_files<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<PathBuf>, CrateError>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
}

Required Methods§

Source

fn test_files<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<Vec<PathBuf>, CrateError>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Implementations on Foreign Types§

Source§

impl<P> GetTestFiles for Arc<Mutex<P>>
where P: GetTestFiles + Send + Sync,

Source§

fn test_files<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<Vec<PathBuf>, CrateError>> + Send + 'async_trait>>
where 'life0: 'async_trait, Arc<Mutex<P>>: 'async_trait,

Implementors§