Struct der::asn1::ContextSpecificRef
source · pub struct ContextSpecificRef<'a, T> {
pub tag_number: TagNumber,
pub tag_mode: TagMode,
pub value: &'a T,
}
Expand description
Context-specific field reference.
This type encodes a field which is specific to a particular context
and is identified by a TagNumber
.
Fields§
§tag_number: TagNumber
Context-specific tag number sans the leading 0b10000000
class
identifier bit and 0b100000
constructed flag.
tag_mode: TagMode
Tag mode: EXPLICIT
VS IMPLICIT
.
value: &'a T
Value of the field.
Trait Implementations§
source§impl<'a, T: Clone> Clone for ContextSpecificRef<'a, T>
impl<'a, T: Clone> Clone for ContextSpecificRef<'a, T>
source§fn clone(&self) -> ContextSpecificRef<'a, T>
fn clone(&self) -> ContextSpecificRef<'a, T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a, T: Debug> Debug for ContextSpecificRef<'a, T>
impl<'a, T: Debug> Debug for ContextSpecificRef<'a, T>
source§impl<T> EncodeValue for ContextSpecificRef<'_, T>where
T: EncodeValue + Tagged,
impl<T> EncodeValue for ContextSpecificRef<'_, T>where
T: EncodeValue + Tagged,
source§impl<'a, T: Ord> Ord for ContextSpecificRef<'a, T>
impl<'a, T: Ord> Ord for ContextSpecificRef<'a, T>
source§fn cmp(&self, other: &ContextSpecificRef<'a, T>) -> Ordering
fn cmp(&self, other: &ContextSpecificRef<'a, T>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'a, T: PartialEq> PartialEq<ContextSpecificRef<'a, T>> for ContextSpecificRef<'a, T>
impl<'a, T: PartialEq> PartialEq<ContextSpecificRef<'a, T>> for ContextSpecificRef<'a, T>
source§fn eq(&self, other: &ContextSpecificRef<'a, T>) -> bool
fn eq(&self, other: &ContextSpecificRef<'a, T>) -> bool
source§impl<'a, T: PartialOrd> PartialOrd<ContextSpecificRef<'a, T>> for ContextSpecificRef<'a, T>
impl<'a, T: PartialOrd> PartialOrd<ContextSpecificRef<'a, T>> for ContextSpecificRef<'a, T>
source§fn partial_cmp(&self, other: &ContextSpecificRef<'a, T>) -> Option<Ordering>
fn partial_cmp(&self, other: &ContextSpecificRef<'a, T>) -> Option<Ordering>
1.0.0 · source§fn 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