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

Required Methods§

Implementors§