[][src]Struct isilon::models::QuotaQuotaCreateParams

pub struct QuotaQuotaCreateParams {
    pub container: Option<bool>,
    pub enforced: bool,
    pub force: Option<bool>,
    pub include_snapshots: bool,
    pub path: String,
    pub persona: Option<AuthAccessAccessItemFileGroup>,
    pub thresholds: Option<QuotaQuotaThresholds>,
    pub thresholds_include_overhead: bool,
    pub _type: String,
}

Fields

container: Option<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.

force: Option<bool>

Force creation of quotas on the root of /ifs.

include_snapshots: bool

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

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'.

thresholds: Option<QuotaQuotaThresholds>
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.

Trait Implementations

impl Debug for QuotaQuotaCreateParams[src]

impl Serialize for QuotaQuotaCreateParams[src]

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