pub type MResult<T> = Result<T>;
pub enum MResult<T> { Ok(T), Err(Report), }
Contains the success value
Contains the error value