pub fn parse_ber_explicit<F>(i: &[u8], tag: BerTag, f: F) -> BerResult<'_>where
    F: Fn(&[u8]) -> BerResult<'_>,
👎Deprecated since 4.1.0: Please use parse_ber_explicit_optional instead
Expand description

Parse an optional tagged object, applying function to get content

This function is deprecated, use parse_ber_explicit_optional instead.