DisplayBitVec

Type Alias DisplayBitVec 

Source
pub type DisplayBitVec = BitVec<u8, Msb0>;
Expand description

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.

Aliased Type§

pub struct DisplayBitVec { /* private fields */ }

Trait Implementations§

Source§

impl From<Bitmap> for DisplayBitVec

Source§

fn from(value: Bitmap) -> Self

Turns a Bitmap into the underlying DisplayBitVec.