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.
pub trait ValueOrd {
// Required method
fn value_cmp(&self, other: &Self) -> Result<Ordering>;
}
DER value ordering trait.
Compares the ordering of the value portion of TLV-encoded DER productions.