Expand description
Utils for binary data manipulation
Structsยง
- Binary
Conversion Error - Error signaling binary conversion issues. Used in
Fromtrait implementation. - Bit
- Type for representing a bit.
- BitIterator
- Bit sequence iterator.
It enables user to read Bits from any iterator that provides bytes as
u8. - BitVec
- Wrapper for
Vec<Bit>used for implementingFromtrait.