[][src]Struct isilon::models::EventEventlistEvent

pub struct EventEventlistEvent {
    pub devid: Option<i32>,
    pub ended: Option<f32>,
    pub event: Option<i32>,
    pub id: Option<String>,
    pub lnn: Option<i32>,
    pub message: Option<String>,
    pub resolve_time: Option<i32>,
    pub severity: Option<String>,
    pub specifier: Option<Empty>,
    pub time: Option<i32>,
    pub value: Option<f32>,
}

Fields

devid: Option<i32>

The device id of the node if it is still part of the cluster otherwise None.

ended: Option<f32>

Time event was ended (eventgroup resolved)

event: Option<i32>

Integer identifier of the event type

id: Option<String>

Unique identifier of event occurrence.

lnn: Option<i32>

The lnn of the node if it is still part of the cluster, otherwise None.

message: Option<String>

Human readable description

resolve_time: Option<i32>

Time the event was resolved.

severity: Option<String>

Severity of event occurrence.

specifier: Option<Empty>

A collection of parameters defined per event.

time: Option<i32>

Time event was detected as UNIX timestamp.

value: Option<f32>

Value of measurement associated with this event.

Trait Implementations

impl Debug for EventEventlistEvent[src]

impl Serialize for EventEventlistEvent[src]

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

Auto Trait Implementations

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