[][src]Struct isilon::models::SnapshotSnapshotExtended

pub struct SnapshotSnapshotExtended {
    pub alias: Option<String>,
    pub expires: Option<i32>,
    pub name: Option<String>,
    pub created: i32,
    pub has_locks: bool,
    pub id: i32,
    pub path: Option<String>,
    pub pct_filesystem: f32,
    pub pct_reserve: f32,
    pub schedule: Option<String>,
    pub shadow_bytes: u64,
    pub size: u64,
    pub state: String,
    pub target_id: Option<i32>,
    pub target_name: Option<String>,
}

Fields

alias: Option<String>

Alias name to create for this snapshot. If null, remove any alias.

expires: Option<i32>

The Unix Epoch time the snapshot will expire and be eligible for automatic deletion.

name: Option<String>

The user or system supplied snapshot name. This will be null for snapshots pending delete.

created: i32

The Unix Epoch time the snapshot was created.

has_locks: bool

True if the snapshot has one or more locks present see, see the locks subresource of a snapshot for a list of locks.

id: i32

The system ID given to the snapshot. This is useful for tracking the status of delete pending snapshots.

path: Option<String>

The /ifs path snapshotted.

pct_filesystem: f32

Percentage of /ifs used for storing this snapshot.

pct_reserve: f32

Percentage of configured snapshot reserved used for storing this snapshot.

schedule: Option<String>

The name of the schedule used to create this snapshot, if applicable.

shadow_bytes: u64

The amount of shadow bytes referred to by this snapshot.

size: u64

The amount of storage in bytes used to store this snapshot.

state: String

Snapshot state.

target_id: Option<i32>

The ID of the snapshot pointed to if this is an alias.

target_name: Option<String>

The name of the snapshot pointed to if this is an alias.

Trait Implementations

impl Debug for SnapshotSnapshotExtended[src]

impl Serialize for SnapshotSnapshotExtended[src]

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