pub trait IsNotEqual<Rhs = Self> {
    type Output: Bit;

    // Required method
    fn is_not_equal(self, rhs: Rhs) -> Self::Output;
}
Expand description

A type operator that returns True if Self != Rhs, otherwise returns False.

Required Associated Types§

source

type Output: Bit

The type representing either True or False

Required Methods§

source

fn is_not_equal(self, rhs: Rhs) -> Self::Output

Method returning True or False.

Implementors§

source§

impl<A, B> IsNotEqual<B> for A
where A: Cmp<B> + IsNotEqualPrivate<B, Compare<A, B>>,

§

type Output = <A as IsNotEqualPrivate<B, <A as Cmp<B>>::Output>>::Output