pub type Result<T> = Result<T>;Expand description
Alias for anyhow::Result for internal use
Use this for internal error handling where you don’t need to expose specific error types to the public API.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}