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: String
§command_line: String
§created_date_time: String
§file_hash: FileHash
§integrity_level: ProcessIntegrityLevel
§is_elevated: bool
§name: String
§parent_process_created_date_time: String
§parent_process_id: i32
§parent_process_name: String
§path: String
§process_id: i32
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Process
impl<'de> Deserialize<'de> for Process
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Process
impl StructuralPartialEq for Process
Auto Trait Implementations§
impl Freeze for Process
impl RefUnwindSafe for Process
impl Send for Process
impl Sync for Process
impl Unpin for Process
impl UnwindSafe for Process
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