Trait dsi_bitstream::traits::WordWrite
source · pub trait WordWrite {
type Error: Error;
type Word: UnsignedInt;
// Required method
fn write_word(&mut self, word: Self::Word) -> Result<(), Self::Error>;
}
Expand description
Sequential, streaming word-by-word writes.
Required Associated Types§
type Error: Error
sourcetype Word: UnsignedInt
type Word: UnsignedInt
The word type (the type of the argument of WordWrite::write_word
).