Struct read_process_memory::ProcessHandle
source · [−]pub struct ProcessHandle(_);
Expand description
On Linux a ProcessHandle
is just a libc::pid_t
.
Trait Implementations
sourceimpl Clone for ProcessHandle
impl Clone for ProcessHandle
sourcefn clone(&self) -> ProcessHandle
fn clone(&self) -> ProcessHandle
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl CopyAddress for ProcessHandle
impl CopyAddress for ProcessHandle
sourceimpl TryFrom<&Child> for ProcessHandle
impl TryFrom<&Child> for ProcessHandle
A process::Child
always has a pid, which is all we need on Linux.
Auto Trait Implementations
impl RefUnwindSafe for ProcessHandle
impl Send for ProcessHandle
impl Sync for ProcessHandle
impl Unpin for ProcessHandle
impl UnwindSafe for ProcessHandle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more