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§
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
source§impl<T> ValueOrd for PhantomData<T>
impl<T> ValueOrd for PhantomData<T>
Provide a no-op implementation for PhantomData