pub struct Implicit<'a, T, const TAG: u8> { /* fields omitted */ }
Expand description
Implicit is a type which wraps another ASN.1 type, indicating that the tag is an ASN.1
IMPLICIT. This will generally be used with Option or Choice.
Requires the const-generics feature and Rust 1.51 or greater. For users
on older Rust versions, Parser::read_optional_implicit_element may be
used.
impl<'a, T, const TAG: u8> Implicit<'a, T, { TAG }>
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.