Trait BitMut

Source
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§

Source

const fn set_bit(&mut self, bit: usize, value: bool) -> &mut Self

Set a single bit using a boolean. (true = set, false = clear)

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.

Implementors§