Type Alias object::read::macho::MachOSymbol32

source ·
pub type MachOSymbol32<'data, 'file, Endian = Endianness, R = &'data [u8]> = MachOSymbol<'data, 'file, MachHeader32<Endian>, R>;
Expand description

A symbol in a MachOFile32.

Aliased Type§

struct MachOSymbol32<'data, 'file, Endian = Endianness, R = &'data [u8]> { /* private fields */ }

Implementations

source§

impl<'data, 'file, Mach, R> MachOSymbol<'data, 'file, Mach, R>
where Mach: MachHeader, R: ReadRef<'data>,

source

pub fn macho_file(&self) -> &'file MachOFile<'data, Mach, R>

Get the Mach-O file containing this symbol.

source

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>
where Mach: MachHeader + Clone, R: ReadRef<'data> + Clone, Mach::Nlist: Clone,

source§

fn clone(&self) -> MachOSymbol<'data, 'file, Mach, R>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'data, 'file, Mach, R> Debug for MachOSymbol<'data, 'file, Mach, R>
where Mach: MachHeader + Debug, R: ReadRef<'data> + Debug, Mach::Nlist: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'data, 'file, Mach, R> ObjectSymbol<'data> for MachOSymbol<'data, 'file, Mach, R>
where Mach: MachHeader, R: ReadRef<'data>,

source§

fn index(&self) -> SymbolIndex

The index of the symbol.
source§

fn name_bytes(&self) -> Result<&'data [u8]>

The name of the symbol.
source§

fn name(&self) -> Result<&'data str>

The name of the symbol. Read more
source§

fn address(&self) -> u64

The address of the symbol. May be zero if the address is unknown.
source§

fn size(&self) -> u64

The size of the symbol. May be zero if the size is unknown.
source§

fn kind(&self) -> SymbolKind

Return the kind of this symbol.
source§

fn section(&self) -> SymbolSection

Returns the section where the symbol is defined.
source§

fn is_undefined(&self) -> bool

Return true if the symbol is undefined.
source§

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 is_common(&self) -> bool

Return true if the symbol is common data. Read more
source§

fn is_weak(&self) -> bool

Return true if the symbol is weak.
source§

fn scope(&self) -> SymbolScope

Returns the symbol scope.
source§

fn is_global(&self) -> bool

Return true if the symbol visible outside of the compilation unit. Read more
source§

fn is_local(&self) -> bool

Return true if the symbol is only visible within the compilation unit.
source§

fn flags(&self) -> SymbolFlags<SectionIndex, SymbolIndex>

Symbol flags that are specific to each file format.
source§

fn section_index(&self) -> Option<SectionIndex>

Returns the section index for the section containing this symbol. Read more
source§

impl<'data, 'file, Mach, R> Copy for MachOSymbol<'data, 'file, Mach, R>
where Mach: MachHeader + Copy, R: ReadRef<'data> + Copy, Mach::Nlist: Copy,