pub type Result<T> = Result<T, Error>;
Expand description
Error handling with the Result
type for the Error
type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}
pub type Result<T> = Result<T, Error>;
Error handling with the Result
type for the Error
type.
pub enum Result<T> {
Ok(T),
Err(Error),
}