pub type CDHResult<T> = Result<T, String>;
Result Type for the library
pub enum CDHResult<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value