pub type MithrilResult<T> = Result<T>;
Mithril result type, an alias of anyhow::Result
enum MithrilResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value