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