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