1pub trait BitStore: bitvec::store::BitStore {}
2
3impl BitStore for u8 {}
4impl BitStore for bitvec::access::BitSafeU8 {}
5
6pub type BitSlice<O = u8> = bitvec::slice::BitSlice<O, bitvec::order::Msb0>;
7
8pub type BitVec = bitvec::vec::BitVec<u8, bitvec::order::Msb0>;