pub trait DefaultOrd: DefaultPartialOrd + Eq {
// Required method
fn default_cmp(&self, other: &Self) -> Ordering;
}
Expand description
Variant of Ord
that compares with default order.
Required Methods§
fn default_cmp(&self, other: &Self) -> Ordering
Object Safety§
This trait is not object safe.