pub type Result<T> = Result<T>;Expand description
The global Result alias of the library.
Refer to the Error documentation for an explanation
about the choice of using anyhow crate on the library level.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}