[][src]Struct isilon::models::QuotaQuotaExtended

pub struct QuotaQuotaExtended {
    pub container: bool,
    pub enforced: bool,
    pub id: String,
    pub include_snapshots: bool,
    pub linked: Option<bool>,
    pub notifications: String,
    pub path: String,
    pub persona: Option<AuthAccessAccessItemFileGroup>,
    pub ready: bool,
    pub thresholds: QuotaQuotaThresholdsExtended,
    pub thresholds_include_overhead: bool,
    pub _type: String,
    pub usage: QuotaQuotaUsage,
}

Fields

container: bool

If true, SMB shares using the quota directory see the quota thresholds as share size.

enforced: bool

True if the quota provides enforcement, otherwise a accounting quota.

id: String

The system ID given to the quota.

include_snapshots: bool

If true, quota governs snapshot data as well as head data.

linked: Option<bool>notifications: String

Summary of notifications: 'custom' indicates one or more notification rules available from the notifications sub-resource; 'default' indicates system default rules are used; 'disabled' indicates that no notifications will be used for this quota.

path: String

The /ifs path governed.

persona: Option<AuthAccessAccessItemFileGroup>

Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'.

ready: bool

True if the accounting is accurate on the quota. If false, this quota is waiting on completion of a QuotaScan job.

thresholds: QuotaQuotaThresholdsExtended
thresholds_include_overhead: bool

If true, thresholds apply to data plus filesystem overhead required to store the data (i.e. 'physical' usage).

_type: String

The type of quota.

usage: QuotaQuotaUsage

Trait Implementations

impl Debug for QuotaQuotaExtended[src]

impl Serialize for QuotaQuotaExtended[src]

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