pub trait BRead { // Required methods fn bit(&self) -> bool; fn bit_is_clear(&self) -> bool; fn bit_is_set(&self) -> bool; }
BitReader methods as a trait.
BitReader