Trait GetFilesInDirectoryWithExclusions
Source pub trait GetFilesInDirectoryWithExclusions {
// Required method
fn get_files_in_dir_with_exclusions<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
&'life0 self,
dir_name: &'life1 str,
extension: &'life2 str,
exclude_files: &'life3 [&'life4 str],
) -> Pin<Box<dyn Future<Output = Result<Vec<PathBuf>, CrateError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
'life4: 'async_trait;
}