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