[][src]Struct isilon::models::JobEvent

pub struct JobEvent {
    pub flags: String,
    pub fmt_type: String,
    pub id: i32,
    pub job_id: i32,
    pub job_type: String,
    pub key: String,
    pub phase: i32,
    pub raw_type: i32,
    pub time: i32,
    pub value: Option<String>,
}

Fields

flags: String

Event flags.

fmt_type: String

A string representation of the type of the data value.

id: i32

Job event ID.

job_id: i32

Job ID.

job_type: String

Job Type.

key: String

Event key name.

phase: i32

Job phase number at time of event.

raw_type: i32

An integer representation of the type of the data value.

time: i32

Time of event in Unix epoch seconds.

value: Option<String>

Event value.

Trait Implementations

impl Debug for JobEvent[src]

impl Serialize for JobEvent[src]

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

Auto Trait Implementations

impl Send for JobEvent

impl Sync for JobEvent

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T