bit_int

Type Alias BitU32

Source
pub type BitU32<const N: u32> = BitUint<u32, N>;
Expand description

A specialized BitUint type whose the underlying type is restricted to u32.

The largest size of N is equal to u32::BITS.

Aliased Typeยง

struct BitU32<const N: u32>(/* private fields */);