pub type Result<T, E = Error> = Result<T, E>;
Expand description
Result type returned from functions that can have our Error
s.
Aliased Type§
enum Result<T, E = Error> {
Ok(T),
Err(E),
}
pub type Result<T, E = Error> = Result<T, E>;
Result type returned from functions that can have our Error
s.
enum Result<T, E = Error> {
Ok(T),
Err(E),
}