pub(crate) type CertResult<T> = Result<T, CertError>;
A Result defined to use CertError
pub(crate) enum CertResult<T> { Ok(T), Err(CertError), }
Contains the success value
Contains the error value