pub struct Win32Kernel<T, V> {
    pub virt_mem: VirtualDma<T, V, Win32VirtualTranslate>,
    pub offsets: Win32Offsets,
    pub kernel_info: Win32KernelInfo,
    pub sysproc_dtb: Address,
    pub kernel_modules: Option<Win32ModuleListInfo>,
}

Fields

virt_mem: VirtualDma<T, V, Win32VirtualTranslate>offsets: Win32Offsetskernel_info: Win32KernelInfosysproc_dtb: Addresskernel_modules: Option<Win32ModuleListInfo>

Implementations

Consumes this kernel and return the underlying owned memory and vat objects

Trait Implementations

Performs the conversion.

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

Read arbitrary amount of data. Read more

Write arbitrary amount of data. 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

Walks a process list and calls a callback for each process structure address

The callback is fully opaque. We need this style so that C FFI can work seamlessly.

Find process information by its internal address

Creates a process by its internal address

It will share the underlying memory resources

Creates a process by its internal address

It will consume the kernel and not affect memory usage

If no process with the specified address can be found this function will return an Error.

This function can be useful for quickly accessing a process.

Walks the kernel module list and calls the provided callback for each module structure address

Arguments
  • callback - where to pass each matching module to. This is an opaque callback.

Retrieves a module by its structure address

Arguments
  • address - address where module’s information resides in

Retrieves the kernel info

Retrieves a process address list Read more

Walks a process list and calls a callback for each process Read more

Retrieves a process list

Find process information by its name Read more

Find process information by its ID

Creates a process by its internal address, borrowing the OS Read more

Creates a process by its name, borrowing the OS Read more

Creates a process by its ID, borrowing the OS Read more

Creates a process by its internal address, consuming the OS Read more

Creates a process by its name, consuming the OS Read more

Creates a process by its ID, consuming the OS Read more

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

Retrieves a module list for the OS

Finds a OS module by its name Read more

Retrieve metadata about the physical memory Read more

Sets the memory mapping for the physical memory 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

The owned type, stored in RCow::Owned

The borrowed type, stored in RCow::Borrowed

Returns the argument unchanged.

This is always WithMetadata_<Self, Self>

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.