Trait ElfSeek

Source
pub trait ElfSeek {
    // Required method
    fn seek(&mut self, offset: u64) -> Result<(), Error>;
}
Expand description

ELF-specific seek functions.

Required Methods§

Source

fn seek(&mut self, offset: u64) -> Result<(), Error>

Seek to the specified offset from the start of the file.

Implementors§

Source§

impl<S: Seek + ?Sized> ElfSeek for S