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