[][src]Struct isilon::models::DedupeReportExtended

pub struct DedupeReportExtended {
    pub dedupe_percent: Option<String>,
    pub elapsed_time: Option<i32>,
    pub id: Option<i32>,
    pub job_id: Option<i32>,
    pub job_type: Option<String>,
    pub reports: Option<Vec<DedupeReport>>,
}

Fields

dedupe_percent: Option<String>

The amount of space the directory trees under this job's paths now take up, compared to what they would take up if not deduplicated (0 ~ 100).

elapsed_time: Option<i32>

The amount of time in seconds it took to run this job.

id: Option<i32>

An unique identifier for this report.

job_id: Option<i32>

The job id this report refers to.

job_type: Option<String>

The type of dedupe job this report refers to.

reports: Option<Vec<DedupeReport>>

A list of report entries for this dedupe job.

Trait Implementations

impl Debug for DedupeReportExtended[src]

impl Serialize for DedupeReportExtended[src]

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