Type Alias KeyboardState

Source
pub type KeyboardState = BitArray<[usize; 8], Lsb0>;

Aliased Type§

struct KeyboardState {
    pub _ord: PhantomData<Lsb0>,
    pub data: [usize; 8],
}

Fields§

§_ord: PhantomData<Lsb0>

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

§data: [usize; 8]

The wrapped data buffer.