pub trait ProcessHandleExt {
    fn check_handle(&self) -> bool;
    fn null_type() -> ProcessHandle;
    fn set_arch(self, arch: Architecture) -> Self;
}
Expand description

Additional functions on process handles

Required Methods

Returns true if the ProcessHandle is not null, and false otherwise.

Return the null equivalent of a ProcessHandle.

Set this handle to use some architecture

Implementors