pub type ActiveMoveBits = BitArray<[u8; 4], Lsb0>;Expand description
A static BitArray representing the bits of a StoredMove.
Aliased Type§
#[repr(transparent)]pub struct ActiveMoveBits {
pub _ord: PhantomData<Lsb0>,
pub data: [u8; 4],
}Fields§
§_ord: PhantomData<Lsb0>The ordering of bits within an A::Store element.
data: [u8; 4]The wrapped data buffer.