Type Alias pkix::ASN1Result

source ·
pub type ASN1Result<T> = Result<T, ASN1Error>;

Aliased Type§

enum ASN1Result<T> {
    Ok(T),
    Err(ASN1Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ASN1Error)

Contains the error value

Trait Implementations§