pub type False = B0;
struct False;
Instantiates a singleton representing this bit.
And with 0 ( 0 & B = 0)
&
Or with 0 ( 0 | 1 = 1)
|
Or with 0 ( 0 | 0 = 0)
Xor between 0 and 1 ( 0 ^ 1 = 1)
^
Xor between 0 and 0 ( 0 ^ 0 = 0)
source
Greater
Less
Equal
Hasher
Self
Rhs
Not of 0 (!0 = 1)
!
Ordering
self
other
==
!=
<
<=
>
>=