1 2 3 4 5 6 7 8 9
//! This module exposes a [`Bits`] type, which is a small, simple bit store //! which is SCALE compatible with `BitVec<u8, Lsb0>`. #[macro_use] mod bits; #[cfg(feature = "serde")] mod serde; pub use bits::{Bits, BitsIntoIter, BitsIter};