pub type BitCount = u128;Expand description
Unsigned integer type used for counts of bits.
ยงNote
A Vec has maximum capacity of isize::MAX in bytes. The unsigned
integer type used to count bits must have width greater than usize in
order to represent the theoretical number of bits that can be used at
maximum capacity. Currently, a u128 is used, which should accomodate most
systems today. A custom unsigned integer type might be created in the future
for future-proofing.