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