pub struct PidNode {
pub ppid: u32,
pub cmd: String,
}Expand description
A node in the process tree.
Fields§
§ppid: u32§cmd: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for PidNode
impl RefUnwindSafe for PidNode
impl Send for PidNode
impl Sync for PidNode
impl Unpin for PidNode
impl UnsafeUnpin for PidNode
impl UnwindSafe for PidNode
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