pub struct ElfSymbol<'data, 'file, Elf, R = &'data [u8]>where
Elf: FileHeader,
R: ReadRef<'data>,
'data: 'file,{ /* private fields */ }
Expand description
A symbol of an ElfFile
.
Trait Implementations§
source§impl<'data, 'file, Elf, R> Clone for ElfSymbol<'data, 'file, Elf, R>where
Elf: FileHeader + Clone,
R: ReadRef<'data> + Clone,
Elf::Endian: Clone,
Elf::Sym: Clone,
'data: 'file,
impl<'data, 'file, Elf, R> Clone for ElfSymbol<'data, 'file, Elf, R>where Elf: FileHeader + Clone, R: ReadRef<'data> + Clone, Elf::Endian: Clone, Elf::Sym: Clone, 'data: 'file,
source§impl<'data, 'file, Elf, R> Debug for ElfSymbol<'data, 'file, Elf, R>where
Elf: FileHeader + Debug,
R: ReadRef<'data> + Debug,
Elf::Endian: Debug,
Elf::Sym: Debug,
'data: 'file,
impl<'data, 'file, Elf, R> Debug for ElfSymbol<'data, 'file, Elf, R>where Elf: FileHeader + Debug, R: ReadRef<'data> + Debug, Elf::Endian: Debug, Elf::Sym: Debug, 'data: 'file,
source§impl<'data, 'file, Elf: FileHeader, R: ReadRef<'data>> ObjectSymbol<'data> for ElfSymbol<'data, 'file, Elf, R>
impl<'data, 'file, Elf: FileHeader, R: ReadRef<'data>> ObjectSymbol<'data> for ElfSymbol<'data, 'file, Elf, R>
source§fn index(&self) -> SymbolIndex
fn index(&self) -> SymbolIndex
The index of the symbol.
source§fn name_bytes(&self) -> Result<&'data [u8]>
fn name_bytes(&self) -> Result<&'data [u8]>
The name of the symbol.
source§fn kind(&self) -> SymbolKind
fn kind(&self) -> SymbolKind
Return the kind of this symbol.
source§fn section(&self) -> SymbolSection
fn section(&self) -> SymbolSection
Returns the section where the symbol is defined.
source§fn is_undefined(&self) -> bool
fn is_undefined(&self) -> bool
Return true if the symbol is undefined.
source§fn is_definition(&self) -> bool
fn is_definition(&self) -> bool
Return true if the symbol is a definition of a function or data object
that has a known address.
source§fn scope(&self) -> SymbolScope
fn scope(&self) -> SymbolScope
Returns the symbol scope.
source§fn is_global(&self) -> bool
fn is_global(&self) -> bool
Return true if the symbol visible outside of the compilation unit. Read more
source§fn is_local(&self) -> bool
fn is_local(&self) -> bool
Return true if the symbol is only visible within the compilation unit.
source§fn flags(&self) -> SymbolFlags<SectionIndex>
fn flags(&self) -> SymbolFlags<SectionIndex>
Symbol flags that are specific to each file format.
source§fn section_index(&self) -> Option<SectionIndex>
fn section_index(&self) -> Option<SectionIndex>
Returns the section index for the section containing this symbol. Read more
impl<'data, 'file, Elf, R> Copy for ElfSymbol<'data, 'file, Elf, R>where Elf: FileHeader + Copy, R: ReadRef<'data> + Copy, Elf::Endian: Copy, Elf::Sym: Copy, 'data: 'file,
Auto Trait Implementations§
impl<'data, 'file, Elf, R> RefUnwindSafe for ElfSymbol<'data, 'file, Elf, R>where R: RefUnwindSafe, <Elf as FileHeader>::Endian: RefUnwindSafe, <Elf as FileHeader>::Sym: RefUnwindSafe,
impl<'data, 'file, Elf, R> Send for ElfSymbol<'data, 'file, Elf, R>where R: Sync, <Elf as FileHeader>::Endian: Send + Sync, <Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf, R> Sync for ElfSymbol<'data, 'file, Elf, R>where R: Sync, <Elf as FileHeader>::Endian: Sync, <Elf as FileHeader>::Sym: Sync,
impl<'data, 'file, Elf, R> Unpin for ElfSymbol<'data, 'file, Elf, R>where <Elf as FileHeader>::Endian: Unpin,
impl<'data, 'file, Elf, R> UnwindSafe for ElfSymbol<'data, 'file, Elf, R>where R: RefUnwindSafe, <Elf as FileHeader>::Endian: UnwindSafe + RefUnwindSafe, <Elf as FileHeader>::Sym: 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