Struct elf::types::Symbol [] [src]

pub struct Symbol {
    pub name: String,
    pub value: u64,
    pub size: u64,
    // some fields omitted
}

Fields

name: String

Symbol name

value: u64

Symbol value

size: u64

Symbol size

Methods

impl Symbol
[src]

fn sym_type(&self) -> SymbolType

fn sym_bind(&self) -> SymbolBind

fn sym_vis(&self) -> SymbolVis

Trait Implementations

impl Eq for Symbol
[src]

impl PartialEq for Symbol
[src]

fn eq(&self, __arg_0: &Symbol) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Symbol) -> bool

This method tests for !=.

impl Clone for Symbol
[src]

fn clone(&self) -> Symbol

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more