Enum commands::parser::ParseError
[−]
[src]
pub enum ParseError<'text> { NoMatches(Token<'text>, Vec<Rc<Node>>), AmbiguousMatch(Token<'text>, Vec<Rc<Node>>), }
Errors that calling parse
on the Parser
can raise.
Variants
NoMatches | There were no matches for the token. | |
AmbiguousMatch | There was more than 1 possible match for the token. |