pub trait BitWriter: Write { fn write_bits(&mut self, v: u16, n: u8) -> Result<()>; }
A bit writer.
Writes the next n bits.
n