Type Alias MouseButtonsState

Source
pub type MouseButtonsState = BitArray<[usize; 1], Lsb0>;

Aliased Type§

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

Fields§

§_ord: PhantomData<Lsb0>

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

§data: [usize; 1]

The wrapped data buffer.