Struct elf::types::Symbol
[−]
[src]
pub struct Symbol {
pub name: String,
pub value: u64,
pub size: u64,
pub shndx: u16,
pub symtype: SymbolType,
pub bind: SymbolBind,
pub vis: SymbolVis,
}Fields
name: String
Symbol name
value: u64
Symbol value
size: u64
Symbol size
shndx: u16
Section index
symtype: SymbolType
Symbol type
bind: SymbolBind
Symbol binding
vis: SymbolVis
Symbol visibility
Trait Implementations
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
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 !=.