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