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