[][src]Struct winapi::um::tlhelp32::MODULEENTRY32

#[repr(C)]pub struct MODULEENTRY32 {
    pub dwSize: DWORD,
    pub th32ModuleID: DWORD,
    pub th32ProcessID: DWORD,
    pub GlblcntUsage: DWORD,
    pub ProccntUsage: DWORD,
    pub modBaseAddr: *mut BYTE,
    pub modBaseSize: DWORD,
    pub hModule: HMODULE,
    pub szModule: [CHAR; 256],
    pub szExePath: [CHAR; 260],
}

Fields

dwSize: DWORDth32ModuleID: DWORDth32ProcessID: DWORDGlblcntUsage: DWORDProccntUsage: DWORDmodBaseAddr: *mut BYTEmodBaseSize: DWORDhModule: HMODULEszModule: [CHAR; 256]szExePath: [CHAR; 260]

Trait Implementations

impl Clone for MODULEENTRY32[src]

impl Copy for MODULEENTRY32[src]

impl Default for MODULEENTRY32[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, 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.