pub trait BitRangeMut<V>: BitRange<V> {
// Required method
fn set_bits(&mut self, msb: usize, lsb: usize, value: V) -> &mut Self;
}Expand description
A trait to set a range of bits with the type V.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.