pub trait TotalOrd {
    fn total_cmp(&self, other: &Self) -> Ordering;

    fn total_min(self, other: Self) -> Self
    where
        Self: Sized
, { ... } fn total_max(self, other: Self) -> Self
    where
        Self: Sized
, { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors