pub struct MachOSymbol<'data, 'file, Mach, R = &'data [u8]>where
    Mach: MachHeader,
    R: ReadRef<'data>,{
    file: &'file MachOFile<'data, Mach, R>,
    index: SymbolIndex,
    nlist: &'data Mach::Nlist,
}Expand description
A symbol in a MachOFile.
Most functionality is provided by the ObjectSymbol trait implementation.
Fields§
§file: &'file MachOFile<'data, Mach, R>§index: SymbolIndex§nlist: &'data Mach::NlistImplementations§
Source§impl<'data, 'file, Mach, R> MachOSymbol<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
 
impl<'data, 'file, Mach, R> MachOSymbol<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
pub(super) fn new( file: &'file MachOFile<'data, Mach, R>, index: SymbolIndex, nlist: &'data Mach::Nlist, ) -> Option<Self>
Sourcepub fn macho_file(&self) -> &'file MachOFile<'data, Mach, R>
 
pub fn macho_file(&self) -> &'file MachOFile<'data, Mach, R>
Get the Mach-O file containing this symbol.
Sourcepub fn macho_symbol(&self) -> &'data Mach::Nlist
 
pub fn macho_symbol(&self) -> &'data Mach::Nlist
Get the raw Mach-O symbol structure.
Trait Implementations§
Source§impl<'data, 'file, Mach, R> Clone for MachOSymbol<'data, 'file, Mach, R>
 
impl<'data, 'file, Mach, R> Clone for MachOSymbol<'data, 'file, Mach, R>
Source§fn clone(&self) -> MachOSymbol<'data, 'file, Mach, R>
 
fn clone(&self) -> MachOSymbol<'data, 'file, Mach, 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, Mach, R> Debug for MachOSymbol<'data, 'file, Mach, R>
 
impl<'data, 'file, Mach, R> Debug for MachOSymbol<'data, 'file, Mach, R>
Source§impl<'data, 'file, Mach, R> ObjectSymbol<'data> for MachOSymbol<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
 
impl<'data, 'file, Mach, R> ObjectSymbol<'data> for MachOSymbol<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
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. Read more
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, Mach, R> Copy for MachOSymbol<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> Sealed for MachOSymbol<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
Auto Trait Implementations§
impl<'data, 'file, Mach, R> Freeze for MachOSymbol<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> RefUnwindSafe for MachOSymbol<'data, 'file, Mach, R>where
    <Mach as MachHeader>::Nlist: RefUnwindSafe,
    <Mach as MachHeader>::Endian: RefUnwindSafe,
    R: RefUnwindSafe,
    Mach: RefUnwindSafe,
    <Mach as MachHeader>::Segment: RefUnwindSafe,
    <Mach as MachHeader>::Section: RefUnwindSafe,
impl<'data, 'file, Mach, R> Send for MachOSymbol<'data, 'file, Mach, R>where
    <Mach as MachHeader>::Nlist: Sync,
    <Mach as MachHeader>::Endian: Sync,
    R: Sync,
    Mach: Sync,
    <Mach as MachHeader>::Segment: Sync,
    <Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach, R> Sync for MachOSymbol<'data, 'file, Mach, R>where
    <Mach as MachHeader>::Nlist: Sync,
    <Mach as MachHeader>::Endian: Sync,
    R: Sync,
    Mach: Sync,
    <Mach as MachHeader>::Segment: Sync,
    <Mach as MachHeader>::Section: Sync,
impl<'data, 'file, Mach, R> Unpin for MachOSymbol<'data, 'file, Mach, R>
impl<'data, 'file, Mach, R> UnwindSafe for MachOSymbol<'data, 'file, Mach, R>where
    <Mach as MachHeader>::Nlist: RefUnwindSafe,
    <Mach as MachHeader>::Endian: RefUnwindSafe,
    R: RefUnwindSafe,
    Mach: RefUnwindSafe,
    <Mach as MachHeader>::Segment: RefUnwindSafe,
    <Mach as MachHeader>::Section: 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