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