[][src]Struct isilon::models::QuotaNotificationExtended

pub struct QuotaNotificationExtended {
    pub action_alert: bool,
    pub action_email_address: Option<String>,
    pub action_email_owner: bool,
    pub email_template: Option<String>,
    pub holdoff: Option<i32>,
    pub schedule: Option<String>,
    pub condition: String,
    pub id: String,
    pub threshold: String,
}

Fields

action_alert: bool

Send alert when rule matches.

action_email_address: Option<String>

Email a specific email address when rule matches.

action_email_owner: bool

Email quota domain owner when rule matches.

email_template: Option<String>

Path of optional /ifs template file used for email actions.

holdoff: Option<i32>

Time to wait between detections for rules triggered by user actions.

schedule: Option<String>

Schedule for rules that repeatedly notify.

condition: String

The condition detected.

id: String

The system ID given to the rule.

threshold: String

The quota threshold detected.

Trait Implementations

impl Debug for QuotaNotificationExtended[src]

impl Serialize for QuotaNotificationExtended[src]

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