Function rocket::mtls::x509::der_parser::ber::parse_ber_sequence_of_v

source ·
pub fn parse_ber_sequence_of_v<'a, T, F, E>(f: F) -> impl FnMut(&'a [u8])
where F: FnMut(&'a [u8]) -> Result<(&'a [u8], T), Err<E>>, E: ParseError<&'a [u8]> + From<Error>,
Available on crate feature mtls only.
Expand description

Parse a SEQUENCE OF object (returning a vec)

Given a subparser for a BER type, parse a sequence of identical objects.

This differs from parse_ber_sequence_of in the parse function and return type.

/// Read a SEQUENCE OF INTEGER
fn parser(i:&[u8]) -> BerResult<Vec<BerObject>> {
    parse_ber_sequence_of_v(parse_ber_integer)(i)
}

let (rem, v) = parser(&bytes).expect("parsing failed");