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