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