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