Trait bitsetium::BitSetLimit[][src]

pub trait BitSetLimit {
    const MAX_SET_INDEX: usize;
}
Expand description

Trait to define static limit on set bits.

Associated Constants

Largest possible bit index that can be set. Any larger index will always be unset. Setting larger index is now allowed.

Unbound bit-sets should specify `MAX_SET_INDEX = usize::MAX;

Implementations on Foreign Types

Implementors