pub type Result<T> = Result<T, ParseError>;
Expand description
Result type alias for the library
Standard Result type used throughout the library for consistent error handling.
All fallible operations return Result<T>
where T is the success type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ParseError),
}