[][src]Struct graph_rs_types::complextypes::Process

pub struct Process {
    pub account_name: String,
    pub command_line: String,
    pub created_date_time: String,
    pub file_hash: FileHash,
    pub integrity_level: ProcessIntegrityLevel,
    pub is_elevated: bool,
    pub name: String,
    pub parent_process_created_date_time: String,
    pub parent_process_id: i32,
    pub parent_process_name: String,
    pub path: String,
    pub process_id: i32,
}

Fields

account_name: Stringcommand_line: Stringcreated_date_time: Stringfile_hash: FileHashintegrity_level: ProcessIntegrityLevelis_elevated: boolname: Stringparent_process_created_date_time: Stringparent_process_id: i32parent_process_name: Stringpath: Stringprocess_id: i32

Trait Implementations

impl Eq for Process[src]

impl Clone for Process[src]

impl PartialEq<Process> for Process[src]

impl Debug for Process[src]

impl Serialize for Process[src]

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

Auto Trait Implementations

impl Send for Process

impl Unpin for Process

impl Sync for Process

impl RefUnwindSafe for Process

impl UnwindSafe for Process

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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