pub type X509Result<'a, T> = Result<(&'a [u8], T), Err<X509Error>>;Available on crate feature
mtls only.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§
pub enum X509Result<'a, T> {
Ok((&'a [u8], T)),
Err(Err<X509Error>),
}