pub trait BitMut: Bit {
// Required method
const fn set_bit(&mut self, bit: usize, value: bool) -> &mut Self;
}
Expand description
A trait to set a single bit as a boolean.
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.