[][src]Struct isilon::models::StatisticsKey

pub struct StatisticsKey {
    pub aggregation_type: String,
    pub base_name: Option<String>,
    pub default_cache_time: i32,
    pub description: String,
    pub key: String,
    pub policies: Option<Vec<StatisticsKeyPolicy>>,
    pub policy_cache_time: Option<i32>,
    pub real_name: Option<String>,
    pub scope: String,
    pub _type: String,
    pub units: String,
}

Fields

aggregation_type: String

Type of aggregation used in down-sampling.

base_name: Option<String>

Name of key this keys is derived from, if any.

default_cache_time: i32

Default time in seconds system will used cached values.

description: String

Description of statistics key.

key: String

Key name.

policies: Option<Vec<StatisticsKeyPolicy>>

List of effective history policies for key.

policy_cache_time: Option<i32>

Configured time in seconds system will used cached values.

real_name: Option<String>

Name of real key if this is an alias.

scope: String

Scope of key.

_type: String

Data type of key values.

units: String

Units of key values.

Trait Implementations

impl Debug for StatisticsKey[src]

impl Serialize for StatisticsKey[src]

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