pub type ParseResult<T> = Result<T, ParseError>;Expand description
Result type for parsing operations.
This type alias provides a convenient way to work with parsing results throughout the library. All parsing functions return this type.
Aliased Type§
pub enum ParseResult<T> {
Ok(T),
Err(ParseError),
}