scale-bits 0.3.0

A SCALE compatible representation of a collection of bits
Documentation
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};