pub trait BitRange<T> { // Required method fn bit_range(&self, msb: usize, lsb: usize) -> T; }
A trait to get ranges of bits.
Get a range of bits.