Trait typenum::type_operators::IsEqual
[−]
[src]
pub trait IsEqual<Rhs = Self> { type Output: Bit; fn is_equal(self, rhs: Rhs) -> Self::Output; }
A type operator that returns True
if Self == Rhs
, otherwise returns False
.