pub struct SymbolDetails {
pub is_global: bool,
pub symbol_type: String,
pub section: Option<SymbolSectionDetails>,
pub name: String,
pub address: NativePointer,
pub size: Option<usize>,
}Fields§
§is_global: bool§symbol_type: String§section: Option<SymbolSectionDetails>§name: String§address: NativePointer§size: Option<usize>Auto Trait Implementations§
impl Freeze for SymbolDetails
impl RefUnwindSafe for SymbolDetails
impl Send for SymbolDetails
impl Sync for SymbolDetails
impl Unpin for SymbolDetails
impl UnsafeUnpin for SymbolDetails
impl UnwindSafe for SymbolDetails
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