pub type ParseResult<T> = Result<T, ParseError>;
Expand description
A simple Result wrapper that already has the ParseError type as its Error-Type
Aliased Type§
pub enum ParseResult<T> {
Ok(T),
Err(ParseError),
}
pub type ParseResult<T> = Result<T, ParseError>;
A simple Result wrapper that already has the ParseError type as its Error-Type
pub enum ParseResult<T> {
Ok(T),
Err(ParseError),
}