pub struct MachOSymbol<'data, 'file, Mach: MachHeader> { /* private fields */ }Expand description
A symbol of a MachOFile.
Trait Implementations
sourceimpl<'data, 'file, Mach: Clone + MachHeader> Clone for MachOSymbol<'data, 'file, Mach> where
    Mach::Nlist: Clone, 
 
impl<'data, 'file, Mach: Clone + MachHeader> Clone for MachOSymbol<'data, 'file, Mach> where
    Mach::Nlist: Clone, 
sourcefn clone(&self) -> MachOSymbol<'data, 'file, Mach>
 
fn clone(&self) -> MachOSymbol<'data, 'file, Mach>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'data, 'file, Mach: Debug + MachHeader> Debug for MachOSymbol<'data, 'file, Mach> where
    Mach::Nlist: Debug, 
 
impl<'data, 'file, Mach: Debug + MachHeader> Debug for MachOSymbol<'data, 'file, Mach> where
    Mach::Nlist: Debug, 
sourceimpl<'data, 'file, Mach: MachHeader> ObjectSymbol<'data> for MachOSymbol<'data, 'file, Mach>
 
impl<'data, 'file, Mach: MachHeader> ObjectSymbol<'data> for MachOSymbol<'data, 'file, Mach>
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
impl<'data, 'file, Mach: Copy + MachHeader> Copy for MachOSymbol<'data, 'file, Mach> where
    Mach::Nlist: Copy, 
Auto Trait Implementations
impl<'data, 'file, Mach> RefUnwindSafe for MachOSymbol<'data, 'file, Mach> where
    Mach: RefUnwindSafe,
    <Mach as MachHeader>::Endian: RefUnwindSafe,
    <Mach as MachHeader>::Nlist: RefUnwindSafe,
    <Mach as MachHeader>::Section: RefUnwindSafe, 
impl<'data, 'file, Mach> Send for MachOSymbol<'data, 'file, Mach> where
    Mach: Sync,
    <Mach as MachHeader>::Endian: Sync,
    <Mach as MachHeader>::Nlist: Sync,
    <Mach as MachHeader>::Section: Sync, 
impl<'data, 'file, Mach> Sync for MachOSymbol<'data, 'file, Mach> where
    Mach: Sync,
    <Mach as MachHeader>::Endian: Sync,
    <Mach as MachHeader>::Nlist: Sync,
    <Mach as MachHeader>::Section: Sync, 
impl<'data, 'file, Mach> Unpin for MachOSymbol<'data, 'file, Mach> where
    'data: 'file, 
impl<'data, 'file, Mach> UnwindSafe for MachOSymbol<'data, 'file, Mach> where
    Mach: RefUnwindSafe,
    <Mach as MachHeader>::Endian: RefUnwindSafe,
    <Mach as MachHeader>::Nlist: RefUnwindSafe,
    <Mach as MachHeader>::Section: RefUnwindSafe, 
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
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
 
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
 
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more