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