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