pub trait FileFilter { fn is_match(&self, file: &Path) -> bool; }
A predicate property that determines whether a file satisfies a certain condition
The predicate function that should return if the given file should be included.
file