Struct object::read::macho::MachOSymbolTable [−][src]
pub struct MachOSymbolTable<'data, 'file, Mach, R = &'data [u8]> where
Mach: MachHeader,
R: ReadRef<'data>, { /* fields omitted */ }
Expand description
A symbol table of a MachOFile
.
Trait Implementations
impl<'data, 'file, Mach: Clone, R: Clone> Clone for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach: Clone, R: Clone> Clone for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach: Debug, R: Debug> Debug for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach: Debug, R: Debug> Debug for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach, R> ObjectSymbolTable<'data> for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: MachHeader,
R: ReadRef<'data>,
impl<'data, 'file, Mach, R> ObjectSymbolTable<'data> for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: MachHeader,
R: ReadRef<'data>,
type Symbol = MachOSymbol<'data, 'file, Mach, R>
type Symbol = MachOSymbol<'data, 'file, Mach, R>
A symbol table entry.
type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach, R>
type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach, R>
An iterator over the symbols in a symbol table.
Get an iterator over the symbols in the table. Read more
Get the symbol at the given index. Read more
impl<'data, 'file, Mach: Copy, R: Copy> Copy for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: MachHeader,
R: ReadRef<'data>,
Auto Trait Implementations
impl<'data, 'file, Mach, R> RefUnwindSafe for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: RefUnwindSafe,
R: RefUnwindSafe,
<Mach as MachHeader>::Endian: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
<Mach as MachHeader>::Section: RefUnwindSafe,
impl<'data, 'file, Mach, R> Send for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: Sync,
R: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach, R> Sync for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: Sync,
R: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach, R> Unpin for MachOSymbolTable<'data, 'file, Mach, R> where
'data: 'file,
impl<'data, 'file, Mach, R> UnwindSafe for MachOSymbolTable<'data, 'file, Mach, R> where
Mach: RefUnwindSafe,
R: RefUnwindSafe,
<Mach as MachHeader>::Endian: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
<Mach as MachHeader>::Section: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more