pub trait CmpNe<Rhs = Self> {
    type Output;

    fn cmp_ne(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors