Struct object::read::pe::ExportTable[][src]

pub struct ExportTable<'data> { /* fields omitted */ }
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.

Returns the parsed exports in this table.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.