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