pub struct Win32Process<T> {
    pub virt_mem: T,
    pub proc_info: Win32ProcessInfo,
    /* private fields */
}

Fields

virt_mem: Tproc_info: Win32ProcessInfo

Implementations

Consumes this process, returning the underlying memory and vat objects

Constructs a new process by borrowing a kernel object.

Internally this will create a VirtualDma object that also borrows the PhysicalMemory and Vat objects from the kernel.

The resulting process object is NOT cloneable due to the mutable borrowing.

When u need a cloneable Process u have to use the ::with_kernel function which will move the kernel object.

Trait Implementations

Performs the conversion.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Reads a fixed length string from the target. Read more

Reads a variable length string with a length of up to specified amount from the target. Read more

Reads a variable length string with up to 4kb length from the target. Read more

Retrieves virtual address translator for the process (if applicable) Retrieves the state of the process

Walks the process’ module list and calls the provided callback for each module

Retrieves a module by its structure address and architecture

Arguments
  • address - address where module’s information resides in
  • architecture - architecture of the module. Should be either ProcessInfo::proc_arch, or ProcessInfo::sys_arch.

Retrieves address of the primary module structure of the process

This will be the module of the executable that is being run, and whose name is stored in _EPROCESS::IMAGE_FILE_NAME

Retrieves the process info

Retrieves a list of all imports of a given module

Retrieves a list of all exports of a given module

Retrieves a list of all sections of a given module

Walks the process’ module list and calls the provided callback for each module Read more

Finds a process module by its name under specified architecture Read more

Finds any architecture process module by its name Read more

Retrieves a module list for the process Read more

Retrieves a module list for the process Read more

Retrieves information for the primary module of the process Read more

Retrieves a list of all imports of a given module

Retrieves a list of all exports of a given module

Retrieves a list of all sections of a given module

Finds a single import of a given module by its name

Finds a single export of a given module by its name

Finds a single section of a given module by its name

Attempt to translate a physical address into a virtual one. Read more

Retrieve all virtual address that map into a given physical address.

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

The owned type, stored in RCow::Owned

The borrowed type, stored in RCow::Borrowed

Performs the conversion.

This is always WithMetadata_<Self, Self>

Performs the conversion.

Gets a reference to a field, determined by offset. Read more

Gets a muatble reference to a field, determined by offset. Read more

Gets a const pointer to a field, the field is determined by offset. Read more

Gets a mutable pointer to a field, determined by offset. Read more

Replaces a field (determined by offset) with value, returning the previous value of the field. Read more

Swaps a field (determined by offset) with the same field in right. Read more

Gets a copy of a field (determined by offset). The field is determined by offset. Read more

Replaces a field (determined by offset) with value, returning the previous value of the field. Read more

Swaps a field (determined by offset) with the same field in right. Read more

Gets a copy of a field (determined by offset). The field is determined by offset. Read more

Compares the address of self with the address of other. Read more

Emulates the pipeline operator, allowing method syntax in more places. Read more

The same as piped except that the function takes &Self Useful for functions that take &Self instead of Self. Read more

The same as piped, except that the function takes &mut Self. Useful for functions that take &mut Self instead of Self. Read more

Mutates self using a closure taking self by mutable reference, passing it along the method chain. Read more

Observes the value of self, passing it along unmodified. Useful in long method chains. Read more

Performs a conversion with Into. using the turbofish .into_::<_>() syntax. Read more

Performs a reference to reference conversion with AsRef, using the turbofish .as_ref_::<_>() syntax. Read more

Performs a mutable reference to mutable reference conversion with AsMut, using the turbofish .as_mut_::<_>() syntax. Read more

Drops self using method notation. Alternative to std::mem::drop. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Transmutes the element type of this pointer.. 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.

This is always Self.

Converts a value back to the original type.

Converts a reference back to the original type.

Converts a mutable reference back to the original type.

Converts a box back to the original type.

Converts an Arc back to the original type. Read more

Converts an Rc back to the original type. Read more

Converts a value back to the original type.

Converts a reference back to the original type.

Converts a mutable reference back to the original type.

Converts a box back to the original type.

Converts an Arc back to the original type.

Converts an Rc back to the original type.