pub type ParseResult<T> = Result<T, ParserError>;Expand description
Result type for the Parser type.
Aliased Type§
pub enum ParseResult<T> {
Ok(T),
Err(ParserError),
}pub type ParseResult<T> = Result<T, ParserError>;Result type for the Parser type.
pub enum ParseResult<T> {
Ok(T),
Err(ParserError),
}