CertResult

Type Alias CertResult 

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

Result type for certificate operations.

Aliased Type§

pub 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