Trait lzw::BitWriter[][src]

pub trait BitWriter: Write {
    fn write_bits(&mut self, v: u16, n: u8) -> Result<()>;
}
Expand description

A bit writer.

Required methods

Writes the next n bits.

Implementors