pub type ParseResult<T> = Result<T, ParseError>;Expand description
The result of a parse operation
Aliased Type§
enum ParseResult<T> {
Ok(T),
Err(ParseError),
}pub type ParseResult<T> = Result<T, ParseError>;The result of a parse operation
enum ParseResult<T> {
Ok(T),
Err(ParseError),
}