Type Alias x509_parser::error::X509Result

source ·
pub type X509Result<'a, T> = IResult<&'a [u8], T, X509Error>;
Expand description

Holds the result of parsing functions (X.509)

Note that this type is also a Result, so usual functions (map, unwrap etc.) are available.

Aliased Type§

enum X509Result<'a, T> {
    Ok((&'a [u8], T)),
    Err(Err<X509Error>),
}

Variants§

§1.0.0

Ok((&'a [u8], T))

Contains the success value

§1.0.0

Err(Err<X509Error>)

Contains the error value