pub type Result<T, E = HOCRParserError> = Result<T, E>;
Expand description
A Result
type alias using HOCRParserError
instances as the error variant.
Aliased Type§
pub enum Result<T, E = HOCRParserError> {
Ok(T),
Err(E),
}
pub type Result<T, E = HOCRParserError> = Result<T, E>;
A Result
type alias using HOCRParserError
instances as the error variant.
pub enum Result<T, E = HOCRParserError> {
Ok(T),
Err(E),
}