1 2 3 4 5 6
pub(crate) mod case_insensitive; pub(crate) mod case_sensitive; pub trait Matcher { fn matches(&self, partial: &str, from: &str) -> bool; }