pub struct NativeOs { /* private fields */ }

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. 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

Construct a process by its info, borrowing the OS

It will share the underlying memory resources

Construct a process by its info, consuming the OS

This function will consume the Kernel instance and move its resources into the process

Walks the OS 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 address of the primary module structure of the process

This will generally be for the initial executable that was run

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

Retrieves the OS info

Find process information by its ID

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

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

Finds a OS module by its name Read more

Retrieves a module list for the OS

Retrieves information for the primary module of the OS 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

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.