[][src]Struct osquery_types::ProcessEventColumns

pub struct ProcessEventColumns<'a> {
    pub uid: &'a str,
    pub time: &'a str,
    pub pid: &'a str,
    pub path: &'a str,
    pub auid: &'a str,
    pub cmdline: &'a str,
    pub ctime: &'a str,
    pub cwd: &'a str,
    pub egid: &'a str,
    pub euid: &'a str,
    pub gid: &'a str,
    pub parent: &'a str,
}

Fields

uid: &'a str

"uid": "0",

time: &'a str

"time": "1527895541",

pid: &'a str

"pid": "30219",

path: &'a str

"path": "/usr/bin/curl",

auid: &'a str

"auid": "1000",

cmdline: &'a str

"cmdline": "curl google.com",

ctime: &'a str

"ctime": "1503452096",

cwd: &'a str

"cwd": "",

egid: &'a str

"egid": "0",

euid: &'a str

"euid": "0",

gid: &'a str

"gid": "0",

parent: &'a str

"parent": ""

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> Send for ProcessEventColumns<'a>

impl<'a> Sync for ProcessEventColumns<'a>

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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]