pub struct PeExport {
pub ordinal: u32,
pub rva: u32,
pub name: Option<String>,
}Expand description
One entry from a PE file’s Export Address Table.
Fields§
§ordinal: u32The export’s ordinal (Base + index). Always present in the EAT.
rva: u32RVA of the export’s code. Forwarder entries (which point at
a redirect string instead) are excluded by PeFile::exports.
name: Option<String>Symbolic name when the export has one; None for ordinal-
only exports.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PeExport
impl RefUnwindSafe for PeExport
impl Send for PeExport
impl Sync for PeExport
impl Unpin for PeExport
impl UnsafeUnpin for PeExport
impl UnwindSafe for PeExport
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