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