der

Trait ValueOrd

Source
pub trait ValueOrd {
    // Required method
    fn value_cmp(&self, other: &Self) -> Result<Ordering>;
}
Expand description

DER value ordering trait.

Compares the ordering of the value portion of TLV-encoded DER productions.

Required Methods§

Source

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Return an Ordering between value portion of TLV-encoded self and other when serialized as ASN.1 DER.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ValueOrd for i8

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for i16

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for i32

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for i64

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for i128

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for u8

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for u16

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for u32

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for u64

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl ValueOrd for u128

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl<T> ValueOrd for Vec<T>
where T: DerOrd,

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Source§

impl<T, const N: usize> ValueOrd for [T; N]
where T: DerOrd,

Source§

fn value_cmp(&self, other: &Self) -> Result<Ordering>

Implementors§

Source§

impl ValueOrd for AnyRef<'_>

Source§

impl ValueOrd for BitString

Source§

impl ValueOrd for BitStringRef<'_>

Source§

impl<'a, T> ValueOrd for EncodeValueRef<'a, T>
where T: ValueOrd,

Source§

impl<T> ValueOrd for ContextSpecific<T>

Source§

impl<T> ValueOrd for SetOfVec<T>
where T: DerOrd,

Source§

impl<T> ValueOrd for T
where T: OrdIsValueOrd,

Source§

impl<T, const N: usize> ValueOrd for SequenceOf<T, N>
where T: DerOrd,

Source§

impl<T, const N: usize> ValueOrd for SetOf<T, N>
where T: DerOrd,