[][src]Struct osquery_types::ProcessEvent

pub struct ProcessEvent<'a> {
    pub action: &'a str,
    pub unix_time: u64,
    pub columns: ProcessEventColumns<'a>,
    pub host_identifier: &'a str,
    pub decorations: Option<HashMap<&'a str, &'a str>>,
}

Fields

action: &'a str

"action": "added" OR "removed",

unix_time: u64

"unixTime": 1527895550,

columns: ProcessEventColumns<'a>

"columns": {//see ProcessEventColumns},

host_identifier: &'a str

"hostIdentifier": "vagrant",

decorations: Option<HashMap<&'a str, &'a str>>

Trait Implementations

impl<'a> Serialize for ProcessEvent<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for ProcessEvent<'a>[src]

Auto Trait Implementations

impl<'a> Send for ProcessEvent<'a>

impl<'a> Sync for ProcessEvent<'a>

Blanket Implementations

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

impl<T> BorrowMut<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]