[][src]Struct isilon::models::NfsSettingsZoneSettings

pub struct NfsSettingsZoneSettings {
    pub nfsv4_allow_numeric_ids: Option<bool>,
    pub nfsv4_domain: Option<String>,
    pub nfsv4_no_domain: Option<bool>,
    pub nfsv4_no_domain_uids: Option<bool>,
    pub nfsv4_no_names: Option<bool>,
    pub nfsv4_replace_domain: Option<bool>,
    pub zone: Option<String>,
}

Fields

nfsv4_allow_numeric_ids: Option<bool>

If true, sends owners and groups as UIDs and GIDs when look up fails or if the 'nfsv4_no_name' property is set to 1.

nfsv4_domain: Option<String>

Specifies the domain or realm through which users and groups are associated.

nfsv4_no_domain: Option<bool>

If true, sends owners and groups without a domain name.

nfsv4_no_domain_uids: Option<bool>

If true, sends UIDs and GIDs without a domain name.

nfsv4_no_names: Option<bool>

If true, sends owners and groups as UIDs and GIDs.

nfsv4_replace_domain: Option<bool>

If true, replaces the owner or group domain with an NFS domain name.

zone: Option<String>

Specifies the access zones in which these settings apply.

Trait Implementations

impl Debug for NfsSettingsZoneSettings[src]

impl Serialize for NfsSettingsZoneSettings[src]

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