Trait yaxpeax_arch::Reader[][src]

pub trait Reader<Address, Item> {
    fn next(&mut self) -> Result<Item, ReadError>;
fn next_n(&mut self, buf: &mut [Item]) -> Result<(), ReadError>;
fn mark(&mut self);
fn offset(&mut self) -> Address;
fn total_offset(&mut self) -> Address; }

Required methods

Implementors