Skip to main content

CertResult

Type Alias CertResult 

Source
pub(crate) type CertResult<T> = Result<T, CertError>;
Expand description

A Result defined to use CertError

Aliased Type§

pub(crate) enum CertResult<T> {
    Ok(T),
    Err(CertError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CertError)

Contains the error value