pub trait BitWriter {
    fn write(&mut self, bits: Bits);
}
Expand description

Trait to write data bitwise

The VecWriter struct is provided for convinience.

Required methods

Implementors