#[repr(C)]
pub struct ImageImportDescriptor { pub original_first_thunk: U32Bytes<LE>, pub time_date_stamp: U32Bytes<LE>, pub forwarder_chain: U32Bytes<LE>, pub name: U32Bytes<LE>, pub first_thunk: U32Bytes<LE>, }

Fields

original_first_thunk: U32Bytes<LE>

RVA to original unbound IAT (ImageThunkData32/ImageThunkData64) 0 for terminating null import descriptor

time_date_stamp: U32Bytes<LE>

0 if not bound, -1 if bound, and real date\time stamp in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT (new BIND) O.W. date/time stamp of DLL bound to (Old BIND)

forwarder_chain: U32Bytes<LE>

-1 if no forwarders

name: U32Bytes<LE>first_thunk: U32Bytes<LE>

RVA to IAT (if bound this IAT has actual addresses)

Implementations

Tell whether this import descriptor is the null descriptor (used to mark the end of the iterator array in a PE)

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)

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.