Expand description
This module exposes a Bits
type, which is a small, simple bit store
which is SCALE compatible with BitVec<u8, Lsb0>
.
Structsยง
- Bits
- This represents a sequence of boolean values, packed into bits.
- Bits
Into Iter - Returned from calling
into_iter
onBits
via thecore::iter::IntoIterator
trait. Allows iteration over each stored bit. - Bits
Iter - Returned from calling
Bits::iter()
. Allows iteration over each stored bit.