[][src]Struct isilon::models::QuotaQuotaThresholdsExtended

pub struct QuotaQuotaThresholdsExtended {
    pub advisory: Option<i32>,
    pub hard: Option<i32>,
    pub soft: Option<i32>,
    pub soft_grace: Option<i32>,
    pub advisory_exceeded: Option<bool>,
    pub advisory_last_exceeded: Option<i32>,
    pub hard_exceeded: Option<bool>,
    pub hard_last_exceeded: Option<i32>,
    pub soft_exceeded: Option<bool>,
    pub soft_last_exceeded: Option<i32>,
}

Fields

advisory: Option<i32>

Usage bytes at which notifications will be sent but writes will not be denied.

hard: Option<i32>

Usage bytes at which further writes will be denied.

soft: Option<i32>

Usage bytes at which notifications will be sent and soft grace time will be started.

soft_grace: Option<i32>

Time in seconds after which the soft threshold has been hit before writes will be denied.

advisory_exceeded: Option<bool>

True if the advisory threshold has been hit.

advisory_last_exceeded: Option<i32>

Time at which advisory threshold was hit.

hard_exceeded: Option<bool>

True if the hard threshold has been hit.

hard_last_exceeded: Option<i32>

Time at which hard threshold was hit.

soft_exceeded: Option<bool>

True if the soft threshold has been hit.

soft_last_exceeded: Option<i32>

Time at which soft threshold was hit

Trait Implementations

impl Debug for QuotaQuotaThresholdsExtended[src]

impl Serialize for QuotaQuotaThresholdsExtended[src]

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