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