pub type MResult<'a> = Result<String, MError<'a>>;
enum MResult<'a> { Ok(String), Err(MError<'a>), }
Contains the success value
Contains the error value