pub type ParserResult<T> = Result<T, ParserError>;
Expand description
Global result type used throughout the parser stages
Aliased Type§
enum ParserResult<T> {
Ok(T),
Err(ParserError),
}
pub type ParserResult<T> = Result<T, ParserError>;
Global result type used throughout the parser stages
enum ParserResult<T> {
Ok(T),
Err(ParserError),
}