pub type Result<T, E = Error> = Result<T, E>;
Expand description
A specialized Result
type for all operations from this crate.
Aliased Type§
pub enum Result<T, E = Error> {
Ok(T),
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.