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