pub struct Import {
pub name: String,
pub library: Option<String>,
pub address: Option<u64>,
pub ordinal: Option<u16>,
}
Expand description
Import information
Fields§
§name: String
Function or symbol name
library: Option<String>
Library name
address: Option<u64>
Address (if resolved)
ordinal: Option<u16>
Ordinal (for PE files)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Import
impl RefUnwindSafe for Import
impl Send for Import
impl Sync for Import
impl Unpin for Import
impl UnwindSafe for Import
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