pub struct MachOSymbolTable<'data, 'file, Mach: MachHeader> { /* private fields */ }
Expand description
A symbol table of a MachOFile
.
Trait Implementations
sourceimpl<'data, 'file, Mach: Clone + MachHeader> Clone for MachOSymbolTable<'data, 'file, Mach>
impl<'data, 'file, Mach: Clone + MachHeader> Clone for MachOSymbolTable<'data, 'file, Mach>
sourcefn clone(&self) -> MachOSymbolTable<'data, 'file, Mach>
fn clone(&self) -> MachOSymbolTable<'data, 'file, Mach>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'data, 'file, Mach: Debug + MachHeader> Debug for MachOSymbolTable<'data, 'file, Mach>
impl<'data, 'file, Mach: Debug + MachHeader> Debug for MachOSymbolTable<'data, 'file, Mach>
sourceimpl<'data, 'file, Mach: MachHeader> ObjectSymbolTable<'data> for MachOSymbolTable<'data, 'file, Mach>
impl<'data, 'file, Mach: MachHeader> ObjectSymbolTable<'data> for MachOSymbolTable<'data, 'file, Mach>
type Symbol = MachOSymbol<'data, 'file, Mach>
type Symbol = MachOSymbol<'data, 'file, Mach>
A symbol table entry.
type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach>
type SymbolIterator = MachOSymbolIterator<'data, 'file, Mach>
An iterator over the symbols in a symbol table.
sourcefn symbols(&self) -> Self::SymbolIterator
fn symbols(&self) -> Self::SymbolIterator
Get an iterator over the symbols in the table. Read more
sourcefn 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: Copy + MachHeader> Copy for MachOSymbolTable<'data, 'file, Mach>
Auto Trait Implementations
impl<'data, 'file, Mach> RefUnwindSafe for MachOSymbolTable<'data, 'file, Mach> where
Mach: RefUnwindSafe,
<Mach as MachHeader>::Endian: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
<Mach as MachHeader>::Section: RefUnwindSafe,
impl<'data, 'file, Mach> Send for MachOSymbolTable<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Sync for MachOSymbolTable<'data, 'file, Mach> where
Mach: Sync,
<Mach as MachHeader>::Endian: Sync,
<Mach as MachHeader>::Nlist: Sync,
<Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach> Unpin for MachOSymbolTable<'data, 'file, Mach> where
'data: 'file,
impl<'data, 'file, Mach> UnwindSafe for MachOSymbolTable<'data, 'file, Mach> where
Mach: RefUnwindSafe,
<Mach as MachHeader>::Endian: RefUnwindSafe,
<Mach as MachHeader>::Nlist: RefUnwindSafe,
<Mach as MachHeader>::Section: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more