[][src]Trait assembly_core::reader::ParseAt

pub trait ParseAt<T>: Sized {
    pub fn at(self, addr: u64, slice: &[u8]) -> Result<T, FileError>;
}

Trait to hand over a parse error past a buffer

Required methods

pub fn at(self, addr: u64, slice: &[u8]) -> Result<T, FileError>[src]

Call this after a ::finish

Loading content...

Implementations on Foreign Types

impl<T, '_> ParseAt<T> for Result<T, Error<&'_ [u8]>>[src]

Loading content...

Implementors

Loading content...