[][src]Trait bigbed::ByteReader

pub trait ByteReader: Read {
    fn read_u64(&mut self, big_endian: bool) -> u64 { ... }
fn read_u32(&mut self, big_endian: bool) -> u32 { ... }
fn read_u16(&mut self, big_endian: bool) -> u16 { ... }
fn read_u8(&mut self) -> u8 { ... } }

a collection of useful methods for producing bytes from a type that implements Read

Provided methods

fn read_u64(&mut self, big_endian: bool) -> u64

fn read_u32(&mut self, big_endian: bool) -> u32

fn read_u16(&mut self, big_endian: bool) -> u16

fn read_u8(&mut self) -> u8

Loading content...

Implementors

impl<T: Read> ByteReader for T[src]

Loading content...