#[repr(C)]
pub struct LOADED_IMAGE {
Show 14 fields pub ModuleName: PSTR, pub hFile: HANDLE, pub MappedAddress: *mut u8, pub FileHeader: *mut IMAGE_NT_HEADERS64, pub LastRvaSection: *mut IMAGE_SECTION_HEADER, pub NumberOfSections: u32, pub Sections: *mut IMAGE_SECTION_HEADER, pub Characteristics: IMAGE_FILE_CHARACTERISTICS2, pub fSystemImage: BOOLEAN, pub fDOSImage: BOOLEAN, pub fReadOnly: BOOLEAN, pub Version: u8, pub Links: LIST_ENTRY, pub SizeOfImage: u32,
}
Expand description

Required features: "Win32_System_Diagnostics_Debug", "Win32_Foundation", "Win32_System_Kernel"

Fields

ModuleName: PSTRhFile: HANDLEMappedAddress: *mut u8FileHeader: *mut IMAGE_NT_HEADERS64LastRvaSection: *mut IMAGE_SECTION_HEADERNumberOfSections: u32Sections: *mut IMAGE_SECTION_HEADERCharacteristics: IMAGE_FILE_CHARACTERISTICS2fSystemImage: BOOLEANfDOSImage: BOOLEANfReadOnly: BOOLEANVersion: u8Links: LIST_ENTRYSizeOfImage: u32

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.