Struct winapi::dbghelp::LOADED_IMAGE [] [src]

pub struct LOADED_IMAGE {
    pub ModuleName: PSTR,
    pub hFile: HANDLE,
    pub MappedAddress: PUCHAR,
    pub FileHeader: PIMAGE_NT_HEADERS32,
    pub LastRvaSection: PIMAGE_SECTION_HEADER,
    pub NumberOfSections: ULONG,
    pub Sections: PIMAGE_SECTION_HEADER,
    pub Characteristics: ULONG,
    pub fSystemImage: BOOLEAN,
    pub fDOSImage: BOOLEAN,
    pub fReadOnly: BOOLEAN,
    pub Version: UCHAR,
    pub Links: LIST_ENTRY,
    pub SizeOfImage: ULONG,
}

Fields

ModuleName: PSTR hFile: HANDLE MappedAddress: PUCHAR FileHeader: PIMAGE_NT_HEADERS32 LastRvaSection: PIMAGE_SECTION_HEADER NumberOfSections: ULONG Sections: PIMAGE_SECTION_HEADER Characteristics: ULONG fSystemImage: BOOLEAN fDOSImage: BOOLEAN fReadOnly: BOOLEAN Version: UCHAR Links: LIST_ENTRY SizeOfImage: ULONG

Trait Implementations

impl Debug for LOADED_IMAGE
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Copy for LOADED_IMAGE
[src]

impl Clone for LOADED_IMAGE
[src]

fn clone(&self) -> LOADED_IMAGE

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more