#[repr(C)]pub struct ExportDirectoryTable {
pub export_flags: u32,
pub time_date_stamp: u32,
pub major_version: u16,
pub minor_version: u16,
pub name_rva: u32,
pub ordinal_base: u32,
pub address_table_entries: u32,
pub number_of_name_pointers: u32,
pub export_address_table_rva: u32,
pub name_pointer_rva: u32,
pub ordinal_table_rva: u32,
}Fields§
§export_flags: u32§time_date_stamp: u32§major_version: u16§minor_version: u16§name_rva: u32§ordinal_base: u32§address_table_entries: u32§number_of_name_pointers: u32§export_address_table_rva: u32§name_pointer_rva: u32§ordinal_table_rva: u32Implementations§
Trait Implementations§
Source§impl Clone for ExportDirectoryTable
impl Clone for ExportDirectoryTable
Source§fn clone(&self) -> ExportDirectoryTable
fn clone(&self) -> ExportDirectoryTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ExportDirectoryTable
Source§impl Debug for ExportDirectoryTable
impl Debug for ExportDirectoryTable
Source§impl Default for ExportDirectoryTable
impl Default for ExportDirectoryTable
Source§fn default() -> ExportDirectoryTable
fn default() -> ExportDirectoryTable
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExportDirectoryTable
impl PartialEq for ExportDirectoryTable
Source§fn eq(&self, other: &ExportDirectoryTable) -> bool
fn eq(&self, other: &ExportDirectoryTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExportDirectoryTable
Source§impl<'a> TryFromCtx<'a, Endian> for ExportDirectoryTablewhere
ExportDirectoryTable: 'a,
impl<'a> TryFromCtx<'a, Endian> for ExportDirectoryTablewhere
ExportDirectoryTable: 'a,
Source§impl<'a> TryIntoCtx<Endian> for &'a ExportDirectoryTable
impl<'a> TryIntoCtx<Endian> for &'a ExportDirectoryTable
Auto Trait Implementations§
impl Freeze for ExportDirectoryTable
impl RefUnwindSafe for ExportDirectoryTable
impl Send for ExportDirectoryTable
impl Sync for ExportDirectoryTable
impl Unpin for ExportDirectoryTable
impl UnsafeUnpin for ExportDirectoryTable
impl UnwindSafe for ExportDirectoryTable
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