pub type Result<O, E = ContextError> = Result<O, E>;
Expand description
By default, the error type (E
) is ContextError
.
When integrating into the result of the application, see
Aliased Type§
enum Result<O, E = ContextError> {
Ok(O),
Err(E),
}