[][src]Struct isilon::models::StatisticsHistoryStat

pub struct StatisticsHistoryStat {
    pub devid: i32,
    pub error: Option<String>,
    pub error_code: Option<i32>,
    pub key: String,
    pub resolution: i32,
    pub values: Option<Vec<StatisticsHistoryStatValue>>,
}

Fields

devid: i32

Devid of node of statistic or 0 for cluster scoped statistics.

error: Option<String>

Key specific error string, if applicable.

error_code: Option<i32>

Key specific error number, if applicable.

key: String

Key name of statistic.

resolution: i32

The interval for which these results were figured (averaged against.)

values: Option<Vec<StatisticsHistoryStatValue>>

Time-series values.

Trait Implementations

impl Debug for StatisticsHistoryStat[src]

impl Serialize for StatisticsHistoryStat[src]

impl<'de> Deserialize<'de> for StatisticsHistoryStat[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