pub struct OsImageExportedSymbol {
pub name: String,
pub address: Va,
}Expand description
An exported symbol from an image (e.g., DLL or .so file).
Fields§
§name: StringThe name of the symbol.
address: VaThe virtual address of the symbol.
Trait Implementations§
Source§impl Debug for OsImageExportedSymbol
impl Debug for OsImageExportedSymbol
Source§impl<'de> Deserialize<'de> for OsImageExportedSymbol
impl<'de> Deserialize<'de> for OsImageExportedSymbol
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OsImageExportedSymbol
impl RefUnwindSafe for OsImageExportedSymbol
impl Send for OsImageExportedSymbol
impl Sync for OsImageExportedSymbol
impl Unpin for OsImageExportedSymbol
impl UnwindSafe for OsImageExportedSymbol
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