pub type ParseResult<'a, T, E = Error> = IResult<&'a [u8], T, E>;
Expand description
Holds the result of BER/DER serialization functions
Aliased Type§
pub enum ParseResult<'a, T, E = Error> {
Ok((&'a [u8], T)),
Err(Err<E>),
}
Variants§
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.