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