pub struct Symbol<'data, 'file> where
    'data: 'file,  { /* private fields */ }Expand description
A symbol table entry.
Trait Implementations
sourceimpl<'data, 'file> ObjectSymbol<'data> for Symbol<'data, 'file>
 
impl<'data, 'file> ObjectSymbol<'data> for Symbol<'data, 'file>
sourcefn index(&self) -> SymbolIndex
 
fn index(&self) -> SymbolIndex
The index of the symbol.
sourcefn kind(&self) -> SymbolKind
 
fn kind(&self) -> SymbolKind
Return the kind of this symbol.
sourcefn section(&self) -> SymbolSection
 
fn section(&self) -> SymbolSection
Returns the section where the symbol is defined.
sourcefn is_undefined(&self) -> bool
 
fn is_undefined(&self) -> bool
Return true if the symbol is undefined.
sourcefn 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. Read more
sourcefn scope(&self) -> SymbolScope
 
fn scope(&self) -> SymbolScope
Returns the symbol scope.
sourcefn is_global(&self) -> bool
 
fn is_global(&self) -> bool
Return true if the symbol visible outside of the compilation unit. Read more
sourcefn is_local(&self) -> bool
 
fn is_local(&self) -> bool
Return true if the symbol is only visible within the compilation unit.
sourcefn flags(&self) -> SymbolFlags<SectionIndex>
 
fn flags(&self) -> SymbolFlags<SectionIndex>
Symbol flags that are specific to each file format.
sourcefn section_index(&self) -> Option<SectionIndex>
 
fn section_index(&self) -> Option<SectionIndex>
Returns the section index for the section containing this symbol. Read more
Auto Trait Implementations
impl<'data, 'file> RefUnwindSafe for Symbol<'data, 'file>
impl<'data, 'file> Send for Symbol<'data, 'file>
impl<'data, 'file> Sync for Symbol<'data, 'file>
impl<'data, 'file> Unpin for Symbol<'data, 'file> where
    'data: 'file, 
impl<'data, 'file> UnwindSafe for Symbol<'data, 'file>
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