pub trait BitRangeMut<T> {
    fn set_bit_range(&mut self, msb: usize, lsb: usize, value: T);
}
Expand description

A trait to set ranges of bits.

Required Methods

Set a range of bits.

Implementations on Foreign Types

Implementors