Trait der::DerOrd

source ·
pub trait DerOrd {
    // Required method
    fn der_cmp(&self, other: &Self) -> Result<Ordering>;
}
Expand description

DER ordering trait.

Compares the ordering of two values based on their ASN.1 DER serializations.

This is used by the DER encoding for SET OF in order to establish an ordering for the elements of sets.

Required Methods§

source

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

Return an Ordering between self and other when serialized as ASN.1 DER.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> DerOrd for Option<T>
where T: DerOrd,

source§

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

Implementors§