pub struct Symbol {
pub address: u64,
pub size: u64,
pub name_offset: u32,
pub section_index: u16,
pub binding: SymbolBinding,
pub kind: SymbolKind,
pub visibility: SymbolVisibility,
}Expand description
A symbol.
Fields§
§address: u64Address.
size: u64Associated size of zero if the size is unknown.
name_offset: u32The offset of the name in the symbol string table.
section_index: u16Relevant section index.
binding: SymbolBindingBinding.
kind: SymbolKindType.
visibility: SymbolVisibilityVisibility.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Symbol
impl RefUnwindSafe for Symbol
impl Send for Symbol
impl Sync for Symbol
impl Unpin for Symbol
impl UnwindSafe for Symbol
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more