Skip to main content

MissingSegmentsBitmap

Type Alias MissingSegmentsBitmap 

Source
pub type MissingSegmentsBitmap = BitArray<[u8; 1], Msb0>;
Expand description

Bitmap of segments missing in a frame.

Represented by u8, it can cover up to 8 segments per frame. If a bit is set, the segment is missing from the frame.

Aliased Type§

#[repr(transparent)]
pub struct MissingSegmentsBitmap { pub _ord: PhantomData<Msb0>, pub data: [u8; 1], }

Fields§

§_ord: PhantomData<Msb0>

The ordering of bits within an A::Store element.

§data: [u8; 1]

The wrapped data buffer.