object::read::elf

Type Alias ElfSymbol32

Source
pub type ElfSymbol32<'data, 'file, Endian = Endianness, R = &'data [u8]> = ElfSymbol<'data, 'file, FileHeader32<Endian>, R>;
Expand description

A symbol in an ElfFile32.

Aliased Type§

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

Implementations

Source§

impl<'data, 'file, Elf: FileHeader, R: ReadRef<'data>> ElfSymbol<'data, 'file, Elf, R>

Source

pub fn endian(&self) -> Elf::Endian

Get the endianness of the ELF file.

Source

pub fn raw_symbol(&self) -> &'data Elf::Sym

👎Deprecated: Use elf_symbol instead

Return a reference to the raw symbol structure.

Source

pub fn elf_symbol(&self) -> &'data Elf::Sym

Get the raw ELF symbol structure.

Trait Implementations

Source§

impl<'data, 'file, Elf, R> Clone for ElfSymbol<'data, 'file, Elf, R>
where Elf: FileHeader + Clone, R: ReadRef<'data> + Clone, Elf::Endian: Clone, Elf::Sym: Clone,

Source§

fn clone(&self) -> ElfSymbol<'data, 'file, Elf, 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, Elf, R> Debug for ElfSymbol<'data, 'file, Elf, R>
where Elf: FileHeader + Debug, R: ReadRef<'data> + Debug, Elf::Endian: Debug, Elf::Sym: Debug,

Source§

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

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

impl<'data, 'file, Elf: FileHeader, R: ReadRef<'data>> ObjectSymbol<'data> for ElfSymbol<'data, 'file, Elf, R>

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, Elf, R> Copy for ElfSymbol<'data, 'file, Elf, R>
where Elf: FileHeader + Copy, R: ReadRef<'data> + Copy, Elf::Endian: Copy, Elf::Sym: Copy,