pub struct ExportTable<'data> { /* private fields */ }
Expand description
A partially parsed PE export table.
Implementations
Parse the export table given its section data and address.
Parse the export directory given its section data.
Returns the header of the export table.
Returns the base value of ordinals.
Adding this to an address index will give an ordinal.
Returns the unparsed address table.
An address table entry may be a local address, or the address of a forwarded export entry.
See Self::is_forward
and Self::target_from_address
.
Returns the unparsed name pointer table.
A name pointer table entry can be used with Self::name_from_pointer
.
Returns the unparsed ordinal table.
An ordinal table entry is a 0-based index into the address table.
See Self::address_by_index
and Self::target_by_index
.
Returns an iterator for the entries in the name pointer table and ordinal table.
A name pointer table entry can be used with Self::name_from_pointer
.
An ordinal table entry is a 0-based index into the address table.
See Self::address_by_index
and Self::target_by_index
.
Returns the export address table entry at the given address index.
This may be a local address, or the address of a forwarded export entry.
See Self::is_forward
and Self::target_from_address
.
index
is a 0-based index into the export address table.
Returns the export address table entry at the given ordinal.
This may be a local address, or the address of a forwarded export entry.
See Self::is_forward
and Self::target_from_address
.
Returns the target of the export at the given address index.
index
is a 0-based index into the export address table.
Returns the target of the export at the given ordinal.
Convert an export address table entry into a target.
Return true if the export address table entry is a forward.
Return the forward string if the export address table entry is a forward.
Convert an export name pointer table entry into a name.
Trait Implementations
Auto Trait Implementations
impl<'data> RefUnwindSafe for ExportTable<'data>
impl<'data> Send for ExportTable<'data>
impl<'data> Sync for ExportTable<'data>
impl<'data> Unpin for ExportTable<'data>
impl<'data> UnwindSafe for ExportTable<'data>
Blanket Implementations
Mutably borrows from an owned value. Read more