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