[][src]Struct grapl_graph_descriptions::graph_description::Process

pub struct Process {
    pub node_key: String,
    pub asset_id: Option<String>,
    pub hostname: Option<String>,
    pub state: u32,
    pub process_id: u64,
    pub process_guid: String,
    pub created_timestamp: u64,
    pub terminated_timestamp: u64,
    pub last_seen_timestamp: u64,
    pub process_name: String,
    pub process_command_line: String,
    pub operating_system: String,
}

Fields

node_key: Stringasset_id: Option<String>hostname: Option<String>state: u32process_id: u64process_guid: Stringcreated_timestamp: u64

When state == 1, create_time When state == 2, end_time When state == 3, seen_time

terminated_timestamp: u64last_seen_timestamp: u64process_name: Stringprocess_command_line: Stringoperating_system: String

Implementations

impl Process[src]

pub fn new(
    asset_id: impl Into<Option<String>>,
    hostname: impl Into<Option<String>>,
    state: ProcessState,
    process_id: u64,
    timestamp: u64,
    process_name: String,
    operating_system: String,
    process_command_line: String,
    process_guid: String
) -> Process
[src]

pub fn into_json(self) -> Value[src]

Trait Implementations

impl Clone for Process[src]

impl Debug for Process[src]

impl Default for Process[src]

impl<'de> Deserialize<'de> for Process[src]

impl Eq for Process[src]

impl From<Process> for Node[src]

impl Message for Process[src]

impl NodeT for Process[src]

impl PartialEq<Process> for Process[src]

impl Serialize for Process[src]

impl StructuralEq for Process[src]

impl StructuralPartialEq for Process[src]

Auto Trait Implementations

impl RefUnwindSafe for Process

impl Send for Process

impl Sync for Process

impl Unpin for Process

impl UnwindSafe for Process

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,