[][src]Struct rusoto_fsx::DataRepositoryTaskStatus

pub struct DataRepositoryTaskStatus {
    pub failed_count: Option<i64>,
    pub last_updated_time: Option<f64>,
    pub succeeded_count: Option<i64>,
    pub total_count: Option<i64>,
}

Provides the task status showing a running total of the total number of files to be processed, the number successfully processed, and the number of files the task failed to process.

Fields

failed_count: Option<i64>

A running total of the number of files that the task failed to process.

last_updated_time: Option<f64>

The time at which the task status was last updated.

succeeded_count: Option<i64>

A running total of the number of files that the task has successfully processed.

total_count: Option<i64>

The total number of files that the task will process. While a task is executing, the sum of SucceededCount plus FailedCount may not equal TotalCount. When the task is complete, TotalCount equals the sum of SucceededCount plus FailedCount.

Trait Implementations

impl Clone for DataRepositoryTaskStatus[src]

impl Debug for DataRepositoryTaskStatus[src]

impl Default for DataRepositoryTaskStatus[src]

impl<'de> Deserialize<'de> for DataRepositoryTaskStatus[src]

impl PartialEq<DataRepositoryTaskStatus> for DataRepositoryTaskStatus[src]

impl StructuralPartialEq for DataRepositoryTaskStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.