pub type Result<T = String> = Result<T>;
Result type used throughout the crate.
Type alias for anyhow::Result<T> with String as default success type.
anyhow::Result<T>
String
pub enum Result<T = String> { Ok(T), Err(Error), }
Contains the success value
Contains the error value