Struct object::read::macho::SymbolTable [−][src]
pub struct SymbolTable<'data, Mach: MachHeader> { /* fields omitted */ }
Expand description
A table of symbol entries in a Mach-O file.
Also includes the string table used for the symbol names.
Implementations
Return the string table used for the symbol names.
Return the symbol at the given index.
Construct a map from addresses to a user-defined map entry.
Construct a map from addresses to symbol names and object file names.
Trait Implementations
impl<'data, Mach: Clone + MachHeader> Clone for SymbolTable<'data, Mach> where
Mach::Nlist: Clone,
impl<'data, Mach: Clone + MachHeader> Clone for SymbolTable<'data, Mach> where
Mach::Nlist: Clone,
impl<'data, Mach: Debug + MachHeader> Debug for SymbolTable<'data, Mach> where
Mach::Nlist: Debug,
impl<'data, Mach: Debug + MachHeader> Debug for SymbolTable<'data, Mach> where
Mach::Nlist: Debug,
impl<'data, Mach: Copy + MachHeader> Copy for SymbolTable<'data, Mach> where
Mach::Nlist: Copy,
Auto Trait Implementations
impl<'data, Mach> RefUnwindSafe for SymbolTable<'data, Mach> where
<Mach as MachHeader>::Nlist: RefUnwindSafe,
impl<'data, Mach> Send for SymbolTable<'data, Mach> where
<Mach as MachHeader>::Nlist: Sync,
impl<'data, Mach> Sync for SymbolTable<'data, Mach> where
<Mach as MachHeader>::Nlist: Sync,
impl<'data, Mach> Unpin for SymbolTable<'data, Mach>
impl<'data, Mach> UnwindSafe for SymbolTable<'data, Mach> where
<Mach as MachHeader>::Nlist: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more