#[repr(C)]
pub struct ImageDelayloadDescriptor { pub attributes: U32<LE>, pub dll_name_rva: U32<LE>, pub module_handle_rva: U32<LE>, pub import_address_table_rva: U32<LE>, pub import_name_table_rva: U32<LE>, pub bound_import_address_table_rva: U32<LE>, pub unload_information_table_rva: U32<LE>, pub time_date_stamp: U32<LE>, }

Fields

attributes: U32<LE>dll_name_rva: U32<LE>

RVA to the name of the target library (NULL-terminate ASCII string)

module_handle_rva: U32<LE>

RVA to the HMODULE caching location (PHMODULE)

import_address_table_rva: U32<LE>

RVA to the start of the IAT (PIMAGE_THUNK_DATA)

import_name_table_rva: U32<LE>

RVA to the start of the name table (PIMAGE_THUNK_DATA::AddressOfData)

bound_import_address_table_rva: U32<LE>

RVA to an optional bound IAT

unload_information_table_rva: U32<LE>

RVA to an optional unload info table

time_date_stamp: U32<LE>

0 if not bound, otherwise, date/time of the target DLL

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.