Trait layered_bitset::BitSetMut[][src]

pub trait BitSetMut: BitSet {
    fn set(&mut self, index: u32, bit: bool);
}
Expand description

Common trait for all mutable bitsets in bitseto crate.

Required methods

Sets bit state at specified index.

Panics

This function may panic if index is equal to or greter than UPPER_BOUND.

Implementations on Foreign Types

Implementors