#[repr(C)]
pub struct IMAGE_OPTIONAL_HEADER32 {
Show 31 fields pub Magic: IMAGE_OPTIONAL_HEADER_MAGIC, pub MajorLinkerVersion: u8, pub MinorLinkerVersion: u8, pub SizeOfCode: u32, pub SizeOfInitializedData: u32, pub SizeOfUninitializedData: u32, pub AddressOfEntryPoint: u32, pub BaseOfCode: u32, pub BaseOfData: u32, pub ImageBase: u32, pub SectionAlignment: u32, pub FileAlignment: u32, pub MajorOperatingSystemVersion: u16, pub MinorOperatingSystemVersion: u16, pub MajorImageVersion: u16, pub MinorImageVersion: u16, pub MajorSubsystemVersion: u16, pub MinorSubsystemVersion: u16, pub Win32VersionValue: u32, pub SizeOfImage: u32, pub SizeOfHeaders: u32, pub CheckSum: u32, pub Subsystem: IMAGE_SUBSYSTEM, pub DllCharacteristics: IMAGE_DLL_CHARACTERISTICS, pub SizeOfStackReserve: u32, pub SizeOfStackCommit: u32, pub SizeOfHeapReserve: u32, pub SizeOfHeapCommit: u32, pub LoaderFlags: u32, pub NumberOfRvaAndSizes: u32, pub DataDirectory: [IMAGE_DATA_DIRECTORY; 16],
}
Expand description

Required features: "Win32_System_Diagnostics_Debug"

Fields

Magic: IMAGE_OPTIONAL_HEADER_MAGICMajorLinkerVersion: u8MinorLinkerVersion: u8SizeOfCode: u32SizeOfInitializedData: u32SizeOfUninitializedData: u32AddressOfEntryPoint: u32BaseOfCode: u32BaseOfData: u32ImageBase: u32SectionAlignment: u32FileAlignment: u32MajorOperatingSystemVersion: u16MinorOperatingSystemVersion: u16MajorImageVersion: u16MinorImageVersion: u16MajorSubsystemVersion: u16MinorSubsystemVersion: u16Win32VersionValue: u32SizeOfImage: u32SizeOfHeaders: u32CheckSum: u32Subsystem: IMAGE_SUBSYSTEMDllCharacteristics: IMAGE_DLL_CHARACTERISTICSSizeOfStackReserve: u32SizeOfStackCommit: u32SizeOfHeapReserve: u32SizeOfHeapCommit: u32LoaderFlags: u32NumberOfRvaAndSizes: u32DataDirectory: [IMAGE_DATA_DIRECTORY; 16]

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.