pub trait Compare<Rhs: ?Sized = Self> {
    type Output;

    // Required methods
    fn is_less_than(&self, other: &Rhs) -> Self::Output;
    fn is_greater_than(&self, other: &Rhs) -> Self::Output;
    fn is_less_than_or_equal(&self, other: &Rhs) -> Self::Output;
    fn is_greater_than_or_equal(&self, other: &Rhs) -> Self::Output;
}
Expand description

Trait for comparator operations.

Required Associated Types§

Required Methods§

Source

fn is_less_than(&self, other: &Rhs) -> Self::Output

Returns true if self is less than other.

Source

fn is_greater_than(&self, other: &Rhs) -> Self::Output

Returns true if self is greater than other.

Source

fn is_less_than_or_equal(&self, other: &Rhs) -> Self::Output

Returns true if self is less than or equal to other.

Source

fn is_greater_than_or_equal(&self, other: &Rhs) -> Self::Output

Returns true if self is greater than or equal to other.

Implementors§