pub struct ModuleEntry {
    pub process_id: u32,
    pub base_address: usize,
    pub size: usize,
    pub handle: HINSTANCE,
    pub name: String,
    pub path: String,
}
Expand description

Represents a single module in a running process.

Fields

process_id: u32

Id of the process.

base_address: usize

Base address of the module.

size: usize

Size of the module in bytes.

handle: HINSTANCE

Handle to the module.

name: String

Name of the module.

path: String

Full path to the module.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Pattern search output.
Iterator over all occurences.
Finds an iterator over all occurences of the pattern.
Returns first occurence of the pattern if present.

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 resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.