pub type Result<T> = Result<T, MTError>;
Result type alias for convenience
enum Result<T> { Ok(T), Err(MTError), }
Contains the success value
Contains the error value