pub trait Bit { fn bit(&self, bit: usize) -> bool; }
A trait to get a single bit.
This trait is implemented for all type that implement BitRange<u8>.
BitRange<u8>
Get a single bit.