pub struct Process {
pub pid: i32,
pub ppid: Option<i32>,
pub title: Option<String>,
pub argv: Option<Vec<String>>,
}
Expand description
Process information.
Fields§
§pid: i32
Process ID of the service.
ppid: Option<i32>
Parent process ID of the service.
title: Option<String>
§argv: Option<Vec<String>>
Command line arguments used to start this process.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Process
impl RefUnwindSafe for Process
impl Send for Process
impl Sync for Process
impl Unpin for Process
impl UnwindSafe for Process
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more