pub type ParserResult<'input> = Result<Parsed<'input>, ParserError<'input>>;Aliased Type§
pub enum ParserResult<'input> {
Ok(Parsed<'input>),
Err(ParserError<'input>),
}Variants§
Ok(Parsed<'input>)
Contains the success value
Err(ParserError<'input>)
Contains the error value