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