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§
pub enum Result<O, E = ContextError> {
Ok(O),
Err(E),
}Variants§
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.