pub struct Process {
pub pid: Pid,
pub ppid: Pid,
pub command: String,
pub arguments: String,
}Expand description
Process holding pid, ppid, command name and arguments of one or more nul-terminated argument(s).
Fields§
§pid: Pid§ppid: Pid§command: String§arguments: StringImplementations§
Trait Implementations§
impl Eq for Process
impl StructuralPartialEq for Process
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