pub type ParseResult<T> = Result<(ParseContainer, (ParseContainer, T)), ParseError>;
Expand description
The Result
type for parsing process.
Aliased Type§
pub enum ParseResult<T> {
Ok((ParseContainer, (ParseContainer, T))),
Err(ParseError),
}
Variants§
Ok((ParseContainer, (ParseContainer, T)))
Contains the success value
Err(ParseError)
Contains the error value