Trait TagValidator

Source
pub trait TagValidator {
    // Required method
    fn supported_tags<'a>(
        &self,
        mir: &'a RtLolaMir,
    ) -> (HashSet<&'a str>, HashSet<&'a str>);
}
Expand description

Specifies for a TagParser the tag-keys that are validated by the Parser. All other keys are ignored.

Required Methods§

Source

fn supported_tags<'a>( &self, mir: &'a RtLolaMir, ) -> (HashSet<&'a str>, HashSet<&'a str>)

Returns the global/local tags that are supported by the parser.

Implementors§