pub type CdcResult<T> = Result<T, CdcError>;
Result type for CDC operations.
pub enum CdcResult<T> { Ok(T), Err(CdcError), }
Contains the success value
Contains the error value