[][src]Trait typenum::type_operators::IsNotEqual

pub trait IsNotEqual<Rhs = Self> {
    type Output: Bit;
    fn is_not_equal(self, rhs: Rhs) -> Self::Output;
}

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

Associated Types

type Output: Bit

The type representing either True or False

Loading content...

Required methods

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

Method returning True or False.

Loading content...

Implementors

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

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

Loading content...