[][src]Struct isilon::models::EventSettingsSettings

pub struct EventSettingsSettings {
    pub heartbeat_interval: Option<String>,
    pub maintenance: Option<EventSettingsSettingsMaintenance>,
    pub retention_days: Option<i32>,
    pub storage_limit: Option<i32>,
}

Fields

heartbeat_interval: Option<String>

Interval between heartbeat events. "daily", "weekly", or "monthly".

maintenance: Option<EventSettingsSettingsMaintenance>

Specifies start and duration of maintenance period during which no alerts will be sent for new eventgroups.

retention_days: Option<i32>

Retention period in days

storage_limit: Option<i32>

Storage limit in megabytes per terabyte of available storage

Trait Implementations

impl Debug for EventSettingsSettings[src]

impl Serialize for EventSettingsSettings[src]

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