[][src]Struct isilon::models::CloudJobFiles

pub struct CloudJobFiles {
    pub file_matching_pattern: Option<Empty>,
    pub names: Option<Vec<CloudJobFilesName>>,
    pub total: Option<i32>,
    pub total_canceled: Option<i32>,
    pub total_failed: Option<i32>,
    pub total_pending: Option<i32>,
    pub total_processing: Option<i32>,
    pub total_succeeded: Option<i32>,
}

Fields

file_matching_pattern: Option<Empty>

The file filtering logic to find files for this job

names: Option<Vec<CloudJobFilesName>>total: Option<i32>

The total number of files addressed by this job

total_canceled: Option<i32>

The number of canceled files

total_failed: Option<i32>

The number of files which failed

total_pending: Option<i32>

The number of files pending action

total_processing: Option<i32>

The number of files currently being processed

total_succeeded: Option<i32>

The total number of files successfully completed

Trait Implementations

impl Debug for CloudJobFiles[src]

impl Serialize for CloudJobFiles[src]

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