[][src]Struct object::pe::ImageLoadConfigDirectory64

#[repr(C)]pub struct ImageLoadConfigDirectory64 {
    pub size: U32<LE>,
    pub time_date_stamp: U32<LE>,
    pub major_version: U16<LE>,
    pub minor_version: U16<LE>,
    pub global_flags_clear: U32<LE>,
    pub global_flags_set: U32<LE>,
    pub critical_section_default_timeout: U32<LE>,
    pub de_commit_free_block_threshold: U64<LE>,
    pub de_commit_total_free_threshold: U64<LE>,
    pub lock_prefix_table: U64<LE>,
    pub maximum_allocation_size: U64<LE>,
    pub virtual_memory_threshold: U64<LE>,
    pub process_affinity_mask: U64<LE>,
    pub process_heap_flags: U32<LE>,
    pub csd_version: U16<LE>,
    pub dependent_load_flags: U16<LE>,
    pub edit_list: U64<LE>,
    pub security_cookie: U64<LE>,
    pub sehandler_table: U64<LE>,
    pub sehandler_count: U64<LE>,
    pub guard_cf_check_function_pointer: U64<LE>,
    pub guard_cf_dispatch_function_pointer: U64<LE>,
    pub guard_cf_function_table: U64<LE>,
    pub guard_cf_function_count: U64<LE>,
    pub guard_flags: U32<LE>,
    pub code_integrity: ImageLoadConfigCodeIntegrity,
    pub guard_address_taken_iat_entry_table: U64<LE>,
    pub guard_address_taken_iat_entry_count: U64<LE>,
    pub guard_long_jump_target_table: U64<LE>,
    pub guard_long_jump_target_count: U64<LE>,
    pub dynamic_value_reloc_table: U64<LE>,
    pub chpe_metadata_pointer: U64<LE>,
    pub guard_rf_failure_routine: U64<LE>,
    pub guard_rf_failure_routine_function_pointer: U64<LE>,
    pub dynamic_value_reloc_table_offset: U32<LE>,
    pub dynamic_value_reloc_table_section: U16<LE>,
    pub reserved2: U16<LE>,
    pub guard_rf_verify_stack_pointer_function_pointer: U64<LE>,
    pub hot_patch_table_offset: U32<LE>,
    pub reserved3: U32<LE>,
    pub enclave_configuration_pointer: U64<LE>,
    pub volatile_metadata_pointer: U64<LE>,
}

Fields

size: U32<LE>time_date_stamp: U32<LE>major_version: U16<LE>minor_version: U16<LE>global_flags_clear: U32<LE>global_flags_set: U32<LE>critical_section_default_timeout: U32<LE>de_commit_free_block_threshold: U64<LE>de_commit_total_free_threshold: U64<LE>lock_prefix_table: U64<LE>

VA

maximum_allocation_size: U64<LE>virtual_memory_threshold: U64<LE>process_affinity_mask: U64<LE>process_heap_flags: U32<LE>csd_version: U16<LE>dependent_load_flags: U16<LE>edit_list: U64<LE>

VA

security_cookie: U64<LE>

VA

sehandler_table: U64<LE>

VA

sehandler_count: U64<LE>guard_cf_check_function_pointer: U64<LE>

VA

guard_cf_dispatch_function_pointer: U64<LE>

VA

guard_cf_function_table: U64<LE>

VA

guard_cf_function_count: U64<LE>guard_flags: U32<LE>code_integrity: ImageLoadConfigCodeIntegrityguard_address_taken_iat_entry_table: U64<LE>

VA

guard_address_taken_iat_entry_count: U64<LE>guard_long_jump_target_table: U64<LE>

VA

guard_long_jump_target_count: U64<LE>dynamic_value_reloc_table: U64<LE>

VA

chpe_metadata_pointer: U64<LE>

VA

guard_rf_failure_routine: U64<LE>

VA

guard_rf_failure_routine_function_pointer: U64<LE>

VA

dynamic_value_reloc_table_offset: U32<LE>dynamic_value_reloc_table_section: U16<LE>reserved2: U16<LE>guard_rf_verify_stack_pointer_function_pointer: U64<LE>

VA

hot_patch_table_offset: U32<LE>reserved3: U32<LE>enclave_configuration_pointer: U64<LE>

VA

volatile_metadata_pointer: U64<LE>

VA

Trait Implementations

impl Clone for ImageLoadConfigDirectory64[src]

impl Copy for ImageLoadConfigDirectory64[src]

impl Debug for ImageLoadConfigDirectory64[src]

impl Pod for ImageLoadConfigDirectory64[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.