pub type BitSlice = BitSlice<u8, Msb0>;
Expand description

A slice of bits.

A BitSlice from the bitvec crate used to represent binary data whose length is not a multiple of 8 bytes or which is not byte aligned within its containing message.

In the Galileo documentation, the most significant bit of the first byte of the data is numbered as bit 0, so we use the Msb0 ordering.