Struct object::read::elf::ElfSymbolTable
source · pub struct ElfSymbolTable<'data, 'file, Elf, R = &'data [u8]>where
Elf: FileHeader,
R: ReadRef<'data>,{ /* private fields */ }
Expand description
A symbol table in an ElfFile
.
Trait Implementations§
source§impl<'data, 'file, Elf, R> Clone for ElfSymbolTable<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> Clone for ElfSymbolTable<'data, 'file, Elf, R>
source§fn clone(&self) -> ElfSymbolTable<'data, 'file, Elf, R>
fn clone(&self) -> ElfSymbolTable<'data, 'file, Elf, 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, Elf, R> Debug for ElfSymbolTable<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> Debug for ElfSymbolTable<'data, 'file, Elf, R>
source§impl<'data, 'file, Elf: FileHeader, R: ReadRef<'data>> ObjectSymbolTable<'data> for ElfSymbolTable<'data, 'file, Elf, R>
impl<'data, 'file, Elf: FileHeader, R: ReadRef<'data>> ObjectSymbolTable<'data> for ElfSymbolTable<'data, 'file, Elf, R>
source§type SymbolIterator = ElfSymbolIterator<'data, 'file, Elf, R>
type SymbolIterator = ElfSymbolIterator<'data, 'file, Elf, 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, Elf, R> Copy for ElfSymbolTable<'data, 'file, Elf, R>
Auto Trait Implementations§
impl<'data, 'file, Elf, R> Freeze for ElfSymbolTable<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> RefUnwindSafe for ElfSymbolTable<'data, 'file, Elf, R>where
<Elf as FileHeader>::Endian: RefUnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
R: RefUnwindSafe,
impl<'data, 'file, Elf, R> Send for ElfSymbolTable<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> Sync for ElfSymbolTable<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> Unpin for ElfSymbolTable<'data, 'file, Elf, R>
impl<'data, 'file, Elf, R> UnwindSafe for ElfSymbolTable<'data, 'file, Elf, R>where
<Elf as FileHeader>::Endian: UnwindSafe + RefUnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
R: 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
)