Trait integer_encoding::FixedIntReader
source · pub trait FixedIntReader {
// Required method
fn read_fixedint<FI: FixedInt>(&mut self) -> Result<FI>;
}
Expand description
A trait for reading FixedInts from any other Reader
.
Required Methods§
sourcefn read_fixedint<FI: FixedInt>(&mut self) -> Result<FI>
fn read_fixedint<FI: FixedInt>(&mut self) -> Result<FI>
Read a fixed integer from a reader. How many bytes are read depends on FI
.
On EOF, an io::Error with io::ErrorKind::UnexpectedEof is returned.
Object Safety§
This trait is not object safe.