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