pub type KeyboardState = BitArray<[usize; 16], Lsb0>;Aliased Type§
#[repr(transparent)]pub struct KeyboardState {
pub _ord: PhantomData<Lsb0>,
pub data: [usize; 16],
}Fields§
§_ord: PhantomData<Lsb0>The ordering of bits within an A::Store element.
data: [usize; 16]The wrapped data buffer.