servicepoint 0.16.0

A rust library for the CCCB Service Point Display.
Documentation
1
2
3
4
5
6
7
8
9
10
/// A byte-packed vector of booleans.
///
/// The implementation is provided by [bitvec].
/// This is an alias for the specific type of [`bitvec::BitVec`] used in this crate.
pub type DisplayBitVec = bitvec::BitVec<u8, bitvec::Msb0>;

pub mod bitvec {
    //! Re-export of the used library [`::bitvec`].
    pub use ::bitvec::prelude::*;
}