Trait ed25519_dalek::pkcs8::spki::der::ValueOrd
pub trait ValueOrd {
fn value_cmp(&self, other: &Self) -> Result<Ordering, Error>;
}
Available on crate feature
pkcs8
only.Expand description
DER value ordering trait.
Compares the ordering of the value portion of TLV-encoded DER productions.
Required Methods§
Implementations on Foreign Types§
Implementors§
impl ValueOrd for AlgorithmIdentifier<'_>
impl ValueOrd for SubjectPublicKeyInfo<'_>
impl ValueOrd for BitString
Available on crate feature
alloc
only.impl ValueOrd for BitStringRef<'_>
impl ValueOrd for AnyRef<'_>
impl<'a, T> ValueOrd for EncodeValueRef<'a, T>where
T: ValueOrd,
impl<T> ValueOrd for ContextSpecific<T>where
T: EncodeValue + ValueOrd + Tagged,
impl<T> ValueOrd for SetOfVec<T>where
T: DerOrd,
Available on crate feature
alloc
only.