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§
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.