pub struct Export<'a> { /* private fields */ }
Implementations§
§impl Export<'_>
impl Export<'_>
pub fn export_flags(&self) -> u32
pub fn export_flags(&self) -> u32
According to the PE specifications this value is reserved and should be set to 0
pub fn major_version(&self) -> u32
pub fn major_version(&self) -> u32
The major version number (can be user-defined)
pub fn minor_version(&self) -> u32
pub fn minor_version(&self) -> u32
The minor version number (can be user-defined)
pub fn ordinal_base(&self) -> u32
pub fn ordinal_base(&self) -> u32
The starting number for the exports. Usually this value is set to 1
pub fn entries(&self) -> ExportEntries<'_> ⓘ
pub fn entries(&self) -> ExportEntries<'_> ⓘ
Iterator over the different Entry
exported by this table
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Export<'a>
impl<'a> !Send for Export<'a>
impl<'a> !Sync for Export<'a>
impl<'a> Unpin for Export<'a>
impl<'a> UnwindSafe for Export<'a>
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