Struct der::asn1::ContextSpecific
source · [−]Expand description
Context-specific field.
This type encodes a field which is specific to a particular context,
and is identified by a TagNumber
.
Any context-specific field can be decoded/encoded with this type.
The intended use is to dynamically dispatch off of the context-specific
tag number when decoding, which allows support for extensions, which are
denoted in an ASN.1 schema using the ...
ellipsis extension marker.
Fields
tag_number: TagNumber
Context-specific tag number sans the leading 0b10000000
class
identifier bit and 0b100000
constructed flag.
value: Any<'a>
Value of the field.
Trait Implementations
sourceimpl<'a> Choice<'a> for ContextSpecific<'a>
impl<'a> Choice<'a> for ContextSpecific<'a>
sourcefn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided Tag
decodable as a variant of this CHOICE
?
sourceimpl<'a> Clone for ContextSpecific<'a>
impl<'a> Clone for ContextSpecific<'a>
sourcefn clone(&self) -> ContextSpecific<'a>
fn clone(&self) -> ContextSpecific<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for ContextSpecific<'a>
impl<'a> Debug for ContextSpecific<'a>
sourceimpl<'a> Encodable for ContextSpecific<'a>
impl<'a> Encodable for ContextSpecific<'a>
sourcefn encoded_len(&self) -> Result<Length>
fn encoded_len(&self) -> Result<Length>
Compute the length of this value in bytes when encoded as ASN.1 DER.
sourcefn encode(&self, encoder: &mut Encoder<'_>) -> Result<()>
fn encode(&self, encoder: &mut Encoder<'_>) -> Result<()>
Encode this value as ASN.1 DER using the provided Encoder
.
sourcefn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
Encode this value to the provided byte slice, returning a sub-slice containing the encoded message. Read more
sourceimpl<'a> From<&'_ ContextSpecific<'a>> for ContextSpecific<'a>
impl<'a> From<&'_ ContextSpecific<'a>> for ContextSpecific<'a>
sourcefn from(value: &ContextSpecific<'a>) -> ContextSpecific<'a>
fn from(value: &ContextSpecific<'a>) -> ContextSpecific<'a>
Converts to this type from the input type.
sourceimpl<'a> Ord for ContextSpecific<'a>
impl<'a> Ord for ContextSpecific<'a>
sourceimpl<'a> PartialEq<ContextSpecific<'a>> for ContextSpecific<'a>
impl<'a> PartialEq<ContextSpecific<'a>> for ContextSpecific<'a>
sourcefn eq(&self, other: &ContextSpecific<'a>) -> bool
fn eq(&self, other: &ContextSpecific<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ContextSpecific<'a>) -> bool
fn ne(&self, other: &ContextSpecific<'a>) -> bool
This method tests for !=
.
sourceimpl<'a> PartialOrd<ContextSpecific<'a>> for ContextSpecific<'a>
impl<'a> PartialOrd<ContextSpecific<'a>> for ContextSpecific<'a>
sourcefn partial_cmp(&self, other: &ContextSpecific<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &ContextSpecific<'a>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<'a> TryFrom<Any<'a>> for ContextSpecific<'a>
impl<'a> TryFrom<Any<'a>> for ContextSpecific<'a>
impl<'a> Copy for ContextSpecific<'a>
impl<'a> Eq for ContextSpecific<'a>
impl<'a> StructuralEq for ContextSpecific<'a>
impl<'a> StructuralPartialEq for ContextSpecific<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for ContextSpecific<'a>
impl<'a> Send for ContextSpecific<'a>
impl<'a> Sync for ContextSpecific<'a>
impl<'a> Unpin for ContextSpecific<'a>
impl<'a> UnwindSafe for ContextSpecific<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more