pub struct Injector<'a> {
    pub dll: &'a str,
    pub pid: u32,
}
Expand description

This struct will expose certain module private functions, to actually use the api.

Fields

dll: &'a strpid: u32

Implementations

This Function will find all currently processes, with a given name. Even if no processes are found, an empty Vector should return.

This function will attempt, to eject a dll from another process. Notice:This implementation blocks, and waits, until the library is injected, or the injection failed.

Inject a DLL into another process Notice:This implementation blocks, and waits, until the library is injected, or the injection failed.

Find a PID, where the process-name matches some user defined selector

This function will return, whether a dll is x64, or x86. The Return value will be Ok(true), if the dll is x64(64bit), and Ok(false), if the dll is x86(32bit).

Create a new Injector object.

Sets the dll

Sets the pid

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

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

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

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

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.