Trait integer_encoding::FixedIntReader
[−]
[src]
pub trait FixedIntReader {
fn read_fixedint<FI: FixedInt>(&mut self) -> Result<FI>;
}A trait for reading FixedInts from any other Reader.
Required Methods
fn read_fixedint<FI: FixedInt>(&mut self) -> Result<FI>
Implementors
impl<R: Read> FixedIntReader for R