Struct object::read::elf::ElfSymbol [−][src]
pub struct ElfSymbol<'data, 'file, Elf> where
'data: 'file,
Elf: FileHeader, { /* fields omitted */ }
Expand description
A symbol of an ElfFile
.
Trait Implementations
The index of the symbol.
Return the kind of this symbol.
Returns the section where the symbol is defined.
Return true if the symbol is undefined.
Return true if the symbol is a definition of a function or data object that has a known address. Read more
Returns the symbol scope.
Return true if the symbol visible outside of the compilation unit. Read more
Return true if the symbol is only visible within the compilation unit.
Symbol flags that are specific to each file format.
Returns the section index for the section containing this symbol. Read more
Auto Trait Implementations
impl<'data, 'file, Elf> RefUnwindSafe for ElfSymbol<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: RefUnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
impl<'data, 'file, Elf> Send for ElfSymbol<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: Send,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Sync for ElfSymbol<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: Sync,
<Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf> Unpin for ElfSymbol<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: Unpin,
'data: 'file,
impl<'data, 'file, Elf> UnwindSafe for ElfSymbol<'data, 'file, Elf> where
<Elf as FileHeader>::Endian: UnwindSafe,
<Elf as FileHeader>::Sym: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more