pub struct ExportInfo {
pub name: Option<String>,
pub ordinal: u32,
pub is_forwarded: bool,
pub forward_to: Option<String>,
pub relative_address: Option<u32>,
}Expand description
Information about a single exported symbol.
Fields§
§name: Option<String>Export name (if any; may be None for ordinal-only exports).
ordinal: u32Ordinal value (ordinal base + index into the export table).
is_forwarded: boolWhether the export is forwarded to another DLL.
forward_to: Option<String>Forward string (e.g., “NTDLL.RtlAllocateHeap”) if forwarded.
relative_address: Option<u32>Exported address relative to image base (if available).
Trait Implementations§
Source§impl Clone for ExportInfo
impl Clone for ExportInfo
Source§fn clone(&self) -> ExportInfo
fn clone(&self) -> ExportInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExportInfo
impl Debug for ExportInfo
Source§impl PartialEq for ExportInfo
impl PartialEq for ExportInfo
impl Eq for ExportInfo
impl StructuralPartialEq for ExportInfo
Auto Trait Implementations§
impl Freeze for ExportInfo
impl RefUnwindSafe for ExportInfo
impl Send for ExportInfo
impl Sync for ExportInfo
impl Unpin for ExportInfo
impl UnsafeUnpin for ExportInfo
impl UnwindSafe for ExportInfo
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