pub trait IsEqual<Rhs = Self> { type Output: Bit; // Required method fn is_equal(self, rhs: Rhs) -> Self::Output; }
A type operator that returns True if Self == Rhs, otherwise returns False.
True
Self == Rhs
False
The type representing either True or False
Method returning True or False.