pub type BitU32<const N: u32> = BitUint<u32, N>;
A specialized BitUint type whose the underlying type is restricted to u32.
BitUint
u32
The largest size of N is equal to u32::BITS.
N
u32::BITS
struct BitU32<const N: u32>(/* private fields */);