pub type Result<T> = Result<T, ParseError>;
Expand description
A custom result type for parsing.
Aliased Type§
enum Result<T> {
Ok(T),
Err(ParseError),
}
pub type Result<T> = Result<T, ParseError>;
A custom result type for parsing.
enum Result<T> {
Ok(T),
Err(ParseError),
}