Struct object::read::elf::ElfSymbolTable [−][src]
pub struct ElfSymbolTable<'data, 'file, Elf> where
'data: 'file,
Elf: FileHeader, { /* fields omitted */ }
Expand description
A symbol table of an ElfFile
.
Trait Implementations
impl<'data, 'file, Elf: Clone> Clone for ElfSymbolTable<'data, 'file, Elf> where
'data: 'file,
Elf: FileHeader,
Elf::Endian: Clone,
impl<'data, 'file, Elf: Clone> Clone for ElfSymbolTable<'data, 'file, Elf> where
'data: 'file,
Elf: FileHeader,
Elf::Endian: Clone,
impl<'data, 'file, Elf: Debug> Debug for ElfSymbolTable<'data, 'file, Elf> where
'data: 'file,
Elf: FileHeader,
Elf::Endian: Debug,
impl<'data, 'file, Elf: Debug> Debug for ElfSymbolTable<'data, 'file, Elf> where
'data: 'file,
Elf: FileHeader,
Elf::Endian: Debug,
impl<'data, 'file, Elf: FileHeader> ObjectSymbolTable<'data> for ElfSymbolTable<'data, 'file, Elf>
impl<'data, 'file, Elf: FileHeader> ObjectSymbolTable<'data> for ElfSymbolTable<'data, 'file, Elf>
type SymbolIterator = ElfSymbolIterator<'data, 'file, Elf>
type SymbolIterator = ElfSymbolIterator<'data, 'file, Elf>
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, Elf: Copy> Copy for ElfSymbolTable<'data, 'file, Elf> where
'data: 'file,
Elf: FileHeader,
Elf::Endian: Copy,
Auto Trait Implementations
impl<'data, 'file, Elf> RefUnwindSafe for ElfSymbolTable<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: RefUnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
impl<'data, 'file, Elf> Send for ElfSymbolTable<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: Send,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Sync for ElfSymbolTable<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Unpin for ElfSymbolTable<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: Unpin,
'data: 'file,
impl<'data, 'file, Elf> UnwindSafe for ElfSymbolTable<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: UnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more