Trait rapid_xml::tree::TagMatcher[][src]

pub trait TagMatcher {
    fn matches(&self, tag_name: &str) -> bool;
}
Expand description

Trait that determines whether given tag name matches some condition

Required methods

Does given tag_name match this matcher’s condition?

Implementors