pub struct ProcessNodeRow {Show 14 fields
pub id: String,
pub pid: u32,
pub ppid: Option<u32>,
pub root_pid: Option<u32>,
pub start_timestamp_ms: Option<u64>,
pub end_timestamp_ms: Option<u64>,
pub comm: Option<String>,
pub command: Option<String>,
pub argv: Vec<String>,
pub cwd: Option<String>,
pub exit_code: Option<i32>,
pub status: Option<String>,
pub view_source: String,
pub confidence: Option<f32>,
}Fields§
§id: String§pid: u32§ppid: Option<u32>§root_pid: Option<u32>§start_timestamp_ms: Option<u64>§end_timestamp_ms: Option<u64>§comm: Option<String>§command: Option<String>§argv: Vec<String>§cwd: Option<String>§exit_code: Option<i32>§status: Option<String>§view_source: String§confidence: Option<f32>Trait Implementations§
Source§impl Clone for ProcessNodeRow
impl Clone for ProcessNodeRow
Source§fn clone(&self) -> ProcessNodeRow
fn clone(&self) -> ProcessNodeRow
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 ProcessNodeRow
impl Debug for ProcessNodeRow
Source§impl<'de> Deserialize<'de> for ProcessNodeRow
impl<'de> Deserialize<'de> for ProcessNodeRow
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProcessNodeRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ProcessNodeRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ProcessNodeRow
impl Serialize for ProcessNodeRow
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
Auto Trait Implementations§
impl Freeze for ProcessNodeRow
impl RefUnwindSafe for ProcessNodeRow
impl Send for ProcessNodeRow
impl Sync for ProcessNodeRow
impl Unpin for ProcessNodeRow
impl UnsafeUnpin for ProcessNodeRow
impl UnwindSafe for ProcessNodeRow
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