pub struct XcoffSymbol<'data, 'file, Xcoff, R = &'data [u8]>where
    Xcoff: FileHeader,
    R: ReadRef<'data>,{
    pub(super) file: &'file XcoffFile<'data, Xcoff, R>,
    pub(super) symbols: &'file SymbolTable<'data, Xcoff, R>,
    pub(super) index: SymbolIndex,
    pub(super) symbol: &'data Xcoff::Symbol,
}Expand description
A symbol in an XcoffFile.
Most functionality is provided by the ObjectSymbol trait implementation.
Fields§
§file: &'file XcoffFile<'data, Xcoff, R>§symbols: &'file SymbolTable<'data, Xcoff, R>§index: SymbolIndex§symbol: &'data Xcoff::SymbolImplementations§
Source§impl<'data, 'file, Xcoff, R> XcoffSymbol<'data, 'file, Xcoff, R>where
    Xcoff: FileHeader,
    R: ReadRef<'data>,
 
impl<'data, 'file, Xcoff, R> XcoffSymbol<'data, 'file, Xcoff, R>where
    Xcoff: FileHeader,
    R: ReadRef<'data>,
Sourcepub fn xcoff_file(&self) -> &'file XcoffFile<'data, Xcoff, R>
 
pub fn xcoff_file(&self) -> &'file XcoffFile<'data, Xcoff, R>
Get the XCOFF file containing this symbol.
Sourcepub fn xcoff_symbol(&self) -> &'data Xcoff::Symbol
 
pub fn xcoff_symbol(&self) -> &'data Xcoff::Symbol
Get the raw XCOFF symbol structure.
Trait Implementations§
Source§impl<'data, 'file, Xcoff, R> Clone for XcoffSymbol<'data, 'file, Xcoff, R>
 
impl<'data, 'file, Xcoff, R> Clone for XcoffSymbol<'data, 'file, Xcoff, R>
Source§fn clone(&self) -> XcoffSymbol<'data, 'file, Xcoff, R>
 
fn clone(&self) -> XcoffSymbol<'data, 'file, Xcoff, R>
Returns a duplicate 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, Xcoff, R> Debug for XcoffSymbol<'data, 'file, Xcoff, R>
 
impl<'data, 'file, Xcoff, R> Debug for XcoffSymbol<'data, 'file, Xcoff, R>
Source§impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> ObjectSymbol<'data> for XcoffSymbol<'data, 'file, Xcoff, R>
 
impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> ObjectSymbol<'data> for XcoffSymbol<'data, 'file, Xcoff, R>
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.
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 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, SymbolIndex>
 
fn flags(&self) -> SymbolFlags<SectionIndex, SymbolIndex>
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, Xcoff, R> Copy for XcoffSymbol<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff: FileHeader, R: ReadRef<'data>> Sealed for XcoffSymbol<'data, 'file, Xcoff, R>
Auto Trait Implementations§
impl<'data, 'file, Xcoff, R> Freeze for XcoffSymbol<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> RefUnwindSafe for XcoffSymbol<'data, 'file, Xcoff, R>where
    <Xcoff as FileHeader>::Symbol: RefUnwindSafe,
    R: RefUnwindSafe,
    Xcoff: RefUnwindSafe,
    <Xcoff as FileHeader>::AuxHeader: RefUnwindSafe,
    <Xcoff as FileHeader>::SectionHeader: RefUnwindSafe,
impl<'data, 'file, Xcoff, R> Send for XcoffSymbol<'data, 'file, Xcoff, R>where
    <Xcoff as FileHeader>::Symbol: Sync,
    R: Sync,
    Xcoff: Sync,
    <Xcoff as FileHeader>::AuxHeader: Sync,
    <Xcoff as FileHeader>::SectionHeader: Sync,
impl<'data, 'file, Xcoff, R> Sync for XcoffSymbol<'data, 'file, Xcoff, R>where
    <Xcoff as FileHeader>::Symbol: Sync,
    R: Sync,
    Xcoff: Sync,
    <Xcoff as FileHeader>::AuxHeader: Sync,
    <Xcoff as FileHeader>::SectionHeader: Sync,
impl<'data, 'file, Xcoff, R> Unpin for XcoffSymbol<'data, 'file, Xcoff, R>
impl<'data, 'file, Xcoff, R> UnwindSafe for XcoffSymbol<'data, 'file, Xcoff, R>where
    <Xcoff as FileHeader>::Symbol: RefUnwindSafe,
    R: RefUnwindSafe,
    Xcoff: RefUnwindSafe,
    <Xcoff as FileHeader>::AuxHeader: RefUnwindSafe,
    <Xcoff as FileHeader>::SectionHeader: 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