pub trait TagMatcher {
// Required method
fn matches(&self, tag_name: &str) -> bool;
}Expand description
Trait that determines whether given tag name matches some condition
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".