scale_bits/bits/
mod.rs

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