pub trait ElfSeek { // Required method fn seek(&mut self, offset: u64) -> Result<(), Error>; }
ELF-specific seek functions.
Seek to the specified offset from the start of the file.