Struct goblin::pe::export::ExportDirectoryTable
source · #[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: u32
Implementations§
Trait Implementations§
source§impl Clone for ExportDirectoryTable
impl Clone for ExportDirectoryTable
source§fn clone(&self) -> ExportDirectoryTable
fn clone(&self) -> ExportDirectoryTable
Returns a copy 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 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
This method tests for
self
and other
values to be equal, and is used
by ==
.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
source§impl TryIntoCtx<Endian> for ExportDirectoryTable
impl TryIntoCtx<Endian> for ExportDirectoryTable
impl Copy for ExportDirectoryTable
impl StructuralPartialEq for ExportDirectoryTable
Auto Trait Implementations§
impl RefUnwindSafe for ExportDirectoryTable
impl Send for ExportDirectoryTable
impl Sync for ExportDirectoryTable
impl Unpin 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