Trait ed25519_dalek::pkcs8::spki::der::DerOrd
pub trait DerOrd {
// Required method
fn der_cmp(&self, other: &Self) -> Result<Ordering, Error>;
}
Available on crate feature
pkcs8
only.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§
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
§impl<T> DerOrd for PhantomData<T>
impl<T> DerOrd for PhantomData<T>
Provide a no-op implementation for PhantomData