pub type ParserResult<T> = Result<T, ParserError>;Expand description
Result type for parser operations
Aliased Type§
pub enum ParserResult<T> {
Ok(T),
Err(ParserError),
}pub type ParserResult<T> = Result<T, ParserError>;Result type for parser operations
pub enum ParserResult<T> {
Ok(T),
Err(ParserError),
}