Trait PartialOrd
pub trait PartialOrd: PartialEq {
fn lt(self, rhs: Self) -> bool;
fn le(self, rhs: Self) -> bool;
fn gt(self, rhs: Self) -> bool;
fn ge(self, rhs: Self) -> bool;
}pub trait PartialOrd: PartialEq {
fn lt(self, rhs: Self) -> bool;
fn le(self, rhs: Self) -> bool;
fn gt(self, rhs: Self) -> bool;
fn ge(self, rhs: Self) -> bool;
}