Trait typenum::type_operators::IsEqual
source · pub trait IsEqual<Rhs = Self> {
type Output: Bit;
// Required method
fn is_equal(self, rhs: Rhs) -> Self::Output;
}
Expand description
A type operator that returns True
if Self == Rhs
, otherwise returns False
.