[][src]Struct isilon::models::SnapshotChangelists

pub struct SnapshotChangelists {
    pub id: String,
    pub job_id: i32,
    pub num_entries: Option<i32>,
    pub root_path: String,
    pub snap1: i32,
    pub snap2: i32,
    pub status: String,
}

Fields

id: String

The system ID given to the changelist.

job_id: i32

The ID of the job which created the changelist.

num_entries: Option<i32>

Number of LIN entries in changelist.

root_path: String

Root path of all LINs in changelist.

snap1: i32

The lower snapid used to compute the changelist.

snap2: i32

The higher snapid used to compute the changelist.

status: String

Status of changelist.

Trait Implementations

impl Debug for SnapshotChangelists[src]

impl Serialize for SnapshotChangelists[src]

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