Type Alias konst::parsing::ParserResult
source · pub type ParserResult<'a, E = ParseError<'a>> = Result<Parser<'a>, E>;
Expand description
Result alias for functions that mutate the parser fallibly.
Aliased Type§
enum ParserResult<'a, E = ParseError<'a>> {
Ok(Parser<'a>),
Err(E),
}