Trait dsi_bitstream::traits::WordRead  
source · pub trait WordRead {
    type Error: Error + Send + Sync + 'static;
    type Word: Word;
    // 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 + Send + Sync + 'static
sourcetype Word: Word
 
type Word: Word
The word type (the type of the result of WordRead::read_word).