[][src]Struct isilon::models::SnapshotSettingsExtended

pub struct SnapshotSettingsExtended {
    pub autocreate: Option<bool>,
    pub autodelete: Option<bool>,
    pub global_visible_accessible: Option<bool>,
    pub local_root_accessible: Option<bool>,
    pub local_root_visible: Option<bool>,
    pub local_subdir_accessible: Option<bool>,
    pub nfs_root_accessible: Option<bool>,
    pub nfs_root_visible: Option<bool>,
    pub nfs_subdir_accessible: Option<bool>,
    pub reserve: Option<f32>,
    pub service: Option<bool>,
    pub smb_root_accessible: Option<bool>,
    pub smb_root_visible: Option<bool>,
    pub smb_subdir_accessible: Option<bool>,
}

Fields

autocreate: Option<bool>

True if the scheduled snapshot creation services is on.

autodelete: Option<bool>

True if the scheduled snapshot deletion services is on.

global_visible_accessible: Option<bool>

Global switch for other accessible and visible settings.

local_root_accessible: Option<bool>

True if root .snapshot directory is accessible locally.

local_root_visible: Option<bool>

True if root .snapshot directory is visible locally.

local_subdir_accessible: Option<bool>

True if sub-directory .snapshot directory is accessible locally.

nfs_root_accessible: Option<bool>

True if root .snapshot directory is accessible over NFS.

nfs_root_visible: Option<bool>

True if root .snapshot directory is visible over NFS.

nfs_subdir_accessible: Option<bool>

True if sub-directory .snapshot directory is accessible over NFS.

reserve: Option<f32>

Percentage of space to reserve for snapshots.

service: Option<bool>

True if the system allows snapshot creation.

smb_root_accessible: Option<bool>

True if root .snapshot directory is accessible over SMB.

smb_root_visible: Option<bool>

True if root .snapshot directory is visible over SMB.

smb_subdir_accessible: Option<bool>

True if sub-directory .snapshot directory is accessible over SMB.

Trait Implementations

impl Debug for SnapshotSettingsExtended[src]

impl Serialize for SnapshotSettingsExtended[src]

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