Trait bitsetium::BitUnsetLimit[][src]

pub trait BitUnsetLimit {
    const MAX_UNSET_INDEX: usize;
}
Expand description

Trait to define static limit on set bits.

Associated Constants

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

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

Implementations on Foreign Types

Implementors