pub trait ParserOutput {
    // Required methods
    fn set_match(&mut self, k: &str, m: Match);
    fn name() -> &'static str;
}
Expand description

The trait for the output of a parser created by the parser! macro.

Required Methods§

source

fn set_match(&mut self, k: &str, m: Match)

source

fn name() -> &'static str

Implementors§