Struct object::read::macho::MachOSymbolTable
source · pub struct MachOSymbolTable<'data, 'file, Mach, R = &'data [u8]>where
Mach: MachHeader,
R: ReadRef<'data>,{ /* private fields */ }
Expand description
A symbol table in a MachOFile
.
Trait Implementations§
source§impl<'data, 'file, Mach, R> Clone for MachOSymbolTable<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Clone for MachOSymbolTable<'data, 'file, Mach, R>
source§fn clone(&self) -> MachOSymbolTable<'data, 'file, Mach, R>
fn clone(&self) -> MachOSymbolTable<'data, 'file, Mach, R>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'data, 'file, Mach, R> Debug for MachOSymbolTable<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Debug for MachOSymbolTable<'data, 'file, Mach, R>
source§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>,
source§type Symbol = MachOSymbol<'data, 'file, Mach, R>
type Symbol = MachOSymbol<'data, 'file, Mach, R>
A symbol table entry.
source§type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach, R>
type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach, R>
An iterator for the symbols in a symbol table.
source§fn symbols(&self) -> Self::SymbolIterator
fn symbols(&self) -> Self::SymbolIterator
Get an iterator for the symbols in the table. Read more
source§fn symbol_by_index(&self, index: SymbolIndex) -> Result<Self::Symbol>
fn symbol_by_index(&self, index: SymbolIndex) -> Result<Self::Symbol>
Get the symbol at the given index. Read more
impl<'data, 'file, Mach, R> Copy for MachOSymbolTable<'data, 'file, Mach, R>
Auto Trait Implementations§
impl<'data, 'file, Mach, R> Freeze for MachOSymbolTable<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> RefUnwindSafe for MachOSymbolTable<'data, 'file, Mach, R>where
<Mach as MachHeader>::Endian: RefUnwindSafe,
R: RefUnwindSafe,
Mach: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
<Mach as MachHeader>::Segment: RefUnwindSafe,
<Mach as MachHeader>::Section: RefUnwindSafe,
impl<'data, 'file, Mach, R> Send for MachOSymbolTable<'data, 'file, Mach, R>where
<Mach as MachHeader>::Endian: Sync,
R: Sync,
Mach: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Segment: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach, R> Sync for MachOSymbolTable<'data, 'file, Mach, R>where
<Mach as MachHeader>::Endian: Sync,
R: Sync,
Mach: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Segment: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach, R> Unpin for MachOSymbolTable<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> UnwindSafe for MachOSymbolTable<'data, 'file, Mach, R>where
<Mach as MachHeader>::Endian: RefUnwindSafe,
R: RefUnwindSafe,
Mach: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
<Mach as MachHeader>::Segment: RefUnwindSafe,
<Mach as MachHeader>::Section: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)