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