Structs§
- Bits
- Byte
- Representation of byte where we can access each bit individually. The bits are counted inside of a byte as: 0 1 2 3 | 4 5 6 7 0 0 0 1 | 0 0 1 0 So the 3rd and 6th bits are set in the number above.
- Iter
- Represents an iterator over a byte.
The elements of the iteration are
Bit
instances.
Enums§
- Bit
- Representation of a bit value, such 0 and 1, or false and true.