pub trait TagMatcher {
// Required method
fn matches(&self, tag_name: &str) -> bool;
}
Expand description
Trait that determines whether given tag name matches some condition
pub trait TagMatcher {
// Required method
fn matches(&self, tag_name: &str) -> bool;
}
Trait that determines whether given tag name matches some condition