[][src]Struct isilon::models::NfsSettingsGlobalSettings

pub struct NfsSettingsGlobalSettings {
    pub nfsv3_enabled: Option<bool>,
    pub nfsv4_enabled: Option<bool>,
    pub rpc_maxthreads: Option<i32>,
    pub rpc_minthreads: Option<i32>,
    pub service: Option<bool>,
}

Fields

nfsv3_enabled: Option<bool>

True if NFSv3 is enabled.

nfsv4_enabled: Option<bool>

True if NFSv4 is enabled.

rpc_maxthreads: Option<i32>

Specifies the maximum number of threads in the nfsd thread pool.

rpc_minthreads: Option<i32>

Specifies the minimum number of threads in the nfsd thread pool.

service: Option<bool>

True if the NFS service is enabled. When set to false, the NFS service is disabled.

Trait Implementations

impl Debug for NfsSettingsGlobalSettings[src]

impl Serialize for NfsSettingsGlobalSettings[src]

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