[][src]Struct endpointsecurity::es_process_t

#[repr(C)]pub struct es_process_t {
    pub audit_token: audit_token_t,
    pub ppid: pid_t,
    pub original_ppid: pid_t,
    pub group_id: pid_t,
    pub session_id: pid_t,
    pub codesigning_flags: u32,
    pub is_platform_binary: bool,
    pub is_es_client: bool,
    pub cdhash: [u8; 20],
    pub signing_id: es_string_token_t,
    pub team_id: es_string_token_t,
    pub executable: *mut es_file_t,
    pub tty: *mut es_file_t,
    pub start_time: timeval,
}

Fields

audit_token: audit_token_tppid: pid_toriginal_ppid: pid_tgroup_id: pid_tsession_id: pid_tcodesigning_flags: u32is_platform_binary: boolis_es_client: boolcdhash: [u8; 20]signing_id: es_string_token_tteam_id: es_string_token_texecutable: *mut es_file_ttty: *mut es_file_tstart_time: timeval

Trait Implementations

impl Clone for es_process_t[src]

impl Copy for es_process_t[src]

impl Debug for es_process_t[src]

Auto Trait Implementations

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> 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.