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

    fn is_equal(&self, other: &Rhs) -> Self::Output;
    fn is_not_equal(&self, other: &Rhs) -> Self::Output;
}
Expand description

Trait for equality comparisons.

Required Associated Types

Required Methods

Returns true if self and other are equal.

Returns true if self and other are not equal.

Implementors