pub trait Bit { // Required method const fn bit(&self, bit: usize) -> bool; }
A trait to retrieve a single bit as a boolean.
Get a single bit and return as boolean. (true = set, false = clear)
true
false