Trait LittleEndianReadExt
pub trait LittleEndianReadExt: Read
Helper methods for reading unsigned integers in little-endian form.
Provided Methods
fn read_u16_le(&mut self) -> Result<u16>fn read_u32_le(&mut self) -> Result<u32>fn read_u64_le(&mut self) -> Result<u64>
Implementors
impl<R> LittleEndianReadExt for ZipFile<'a, R> where R: Read,impl<R> LittleEndianReadExt for ZipFileSeek<'a, R> where R: Read,impl<R: Read> LittleEndianReadExt for R