Type Alias rocket::mtls::oid::asn1_rs::TaggedImplicit

source ·
pub type TaggedImplicit<T, E, const TAG: u32> = TaggedValue<T, E, Implicit, asn1_rs::::asn1_types::tagged::implicit::TaggedImplicit::{constant#0}, TAG>;
Available on crate feature mtls only.
Expand description

A helper object to parse [ n ] IMPLICIT T

A helper object implementing FromBer and FromDer, to parse tagged optional values.

This helper expects context-specific tags. See TaggedValue or TaggedParser for more generic implementations if needed.

§Examples

To parse a [0] IMPLICIT INTEGER OPTIONAL object:

use asn1_rs::{Error, FromBer, Integer, TaggedImplicit, TaggedValue};

let bytes = &[0xa0, 0x1, 0x2];

let (_, tagged) = TaggedImplicit::<Integer, Error, 0>::from_ber(bytes).unwrap();
assert_eq!(tagged, TaggedValue::implicit(Integer::from(2)));

Aliased Type§

struct TaggedImplicit<T, E, const TAG: u32> { /* private fields */ }