pub struct SymbolTable<'data, Mach: MachHeader, R = &'data [u8]> where
R: ReadRef<'data>, { /* private fields */ }
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, R: Clone> Clone for SymbolTable<'data, Mach, R> where
R: ReadRef<'data>,
Mach::Nlist: Clone,
impl<'data, Mach: Clone + MachHeader, R: Clone> Clone for SymbolTable<'data, Mach, R> where
R: ReadRef<'data>,
Mach::Nlist: Clone,
impl<'data, Mach: Debug + MachHeader, R: Debug> Debug for SymbolTable<'data, Mach, R> where
R: ReadRef<'data>,
Mach::Nlist: Debug,
impl<'data, Mach: Debug + MachHeader, R: Debug> Debug for SymbolTable<'data, Mach, R> where
R: ReadRef<'data>,
Mach::Nlist: Debug,
impl<'data, Mach: Copy + MachHeader, R: Copy> Copy for SymbolTable<'data, Mach, R> where
R: ReadRef<'data>,
Mach::Nlist: Copy,
Auto Trait Implementations
impl<'data, Mach, R> RefUnwindSafe for SymbolTable<'data, Mach, R> where
R: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
impl<'data, Mach, R> Send for SymbolTable<'data, Mach, R> where
R: Send,
<Mach as MachHeader>::Nlist: Sync,
impl<'data, Mach, R> Sync for SymbolTable<'data, Mach, R> where
R: Sync,
<Mach as MachHeader>::Nlist: Sync,
impl<'data, Mach, R> Unpin for SymbolTable<'data, Mach, R> where
R: Unpin,
impl<'data, Mach, R> UnwindSafe for SymbolTable<'data, Mach, R> where
R: UnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more