pub struct ProcessLink { /* private fields */ }Expand description
A single entry in a process ancestry chain.
Displayed as "pid|cmd|user" by the Display impl.
use proc_tree::ProcessLink;
let link = ProcessLink::new(102, "touch".into(), "touch /tmp/foo".into(), "root".into());
assert_eq!(link.to_string(), "102|touch /tmp/foo|root");
assert_eq!(link.pid(), 102);
assert_eq!(link.comm(), "touch");
assert_eq!(link.cmd(), "touch /tmp/foo");
assert_eq!(link.user(), "root");A chain is a Vec<ProcessLink> ordered from child to ancestor.
Implementations§
Source§impl ProcessLink
impl ProcessLink
Trait Implementations§
Source§impl Clone for ProcessLink
impl Clone for ProcessLink
Source§fn clone(&self) -> ProcessLink
fn clone(&self) -> ProcessLink
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProcessLink
impl Debug for ProcessLink
Source§impl<'de> Deserialize<'de> for ProcessLink
impl<'de> Deserialize<'de> for ProcessLink
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProcessLink, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProcessLink, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ProcessLink
impl Display for ProcessLink
impl Eq for ProcessLink
Source§impl PartialEq for ProcessLink
impl PartialEq for ProcessLink
Source§fn eq(&self, other: &ProcessLink) -> bool
fn eq(&self, other: &ProcessLink) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessLink
impl Serialize for ProcessLink
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ProcessLink
Auto Trait Implementations§
impl Freeze for ProcessLink
impl RefUnwindSafe for ProcessLink
impl Send for ProcessLink
impl Sync for ProcessLink
impl Unpin for ProcessLink
impl UnsafeUnpin for ProcessLink
impl UnwindSafe for ProcessLink
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.