[][src]Struct isilon::models::SnapshotSettingsSettings

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

Fields

autocreate: bool

True if the scheduled snapshot creation services is on.

autodelete: bool

True if the scheduled snapshot deletion services is on.

global_visible_accessible: bool

Global switch for other accessible and visible settings.

local_root_accessible: bool

True if root .snapshot directory is accessible locally.

local_root_visible: bool

True if root .snapshot directory is visible locally.

local_subdir_accessible: bool

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

nfs_root_accessible: bool

True if root .snapshot directory is accessible over NFS.

nfs_root_visible: bool

True if root .snapshot directory is visible over NFS.

nfs_subdir_accessible: bool

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

reserve: f32

Percentage of space to reserve for snapshots.

service: bool

True if the system allows snapshot creation.

smb_root_accessible: bool

True if root .snapshot directory is accessible over SMB.

smb_root_visible: bool

True if root .snapshot directory is visible over SMB.

smb_subdir_accessible: bool

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

Trait Implementations

impl Debug for SnapshotSettingsSettings[src]

impl Serialize for SnapshotSettingsSettings[src]

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