pub trait Matcher: Debug + Sync {
// Required methods
fn matches(&self, file: &RepoPath) -> bool;
fn visit(&self, dir: &RepoPath) -> Visit;
}
pub trait Matcher: Debug + Sync {
// Required methods
fn matches(&self, file: &RepoPath) -> bool;
fn visit(&self, dir: &RepoPath) -> Visit;
}