pub type Result<T> = Result<T, MlError>;
The main result type for ML operations
pub enum Result<T> { Ok(T), Err(MlError), }
Contains the success value
Contains the error value