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