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