pub type Result<T> = Result<T, Error>;Expand description
Convenience alias for results that use the umbrella’s error.
Prefer leaf-crate Result types when integrating a specific subsystem.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}