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