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