pub trait MappedFilesExt {
    fn from_gdb<T: AsRef<str>>(mapping: T) -> Result<MappedFiles>;
    fn find(&self, addr: u64) -> Option<File>;
}

Required Methods§

Construct MappedFiels from string

Arguments
  • ‘mapping’ - gdb output string with mapped files

Determine which file contains the address

Arguments
  • ‘addr’ - given address

Implementors§