Trait sc_network::multiaddr::multihash::typenum::IsNotEqual [−]
pub trait IsNotEqual<Rhs = Self> { type Output: Bit; fn is_not_equal(self, rhs: Rhs) -> Self::Output; }
Expand description
A type operator that returns True
if Self != Rhs
, otherwise returns False
.
Associated Types
Required methods
fn is_not_equal(self, rhs: Rhs) -> Self::Output
fn is_not_equal(self, rhs: Rhs) -> Self::Output
Method returning True
or False
.
Implementors
impl<A, B> IsNotEqual<B> for A where
A: Cmp<B> + IsNotEqualPrivate<B, <A as Cmp<B>>::Output>,