Trait spectral::numeric::OrderedAssertions [] [src]

pub trait OrderedAssertions<T> where T: Debug + PartialOrd {
    fn is_less_than(&mut self, other: &T);
    fn is_less_than_or_equal_to(&mut self, other: &T);
    fn is_greater_than(&mut self, other: &T);
    fn is_greater_than_or_equal_to(&mut self, other: &T);
}

Required Methods

Implementors