Struct rusoto_dms::ReplicationTaskStats[][src]

pub struct ReplicationTaskStats {
    pub elapsed_time_millis: Option<i64>,
    pub full_load_progress_percent: Option<i64>,
    pub tables_errored: Option<i64>,
    pub tables_loaded: Option<i64>,
    pub tables_loading: Option<i64>,
    pub tables_queued: Option<i64>,
}

Fields

The elapsed time of the task, in milliseconds.

The percent complete for the full load migration task.

The number of errors that have occurred during this task.

The number of tables loaded for this task.

The number of tables currently loading for this task.

The number of tables queued for this task.

Trait Implementations

impl Default for ReplicationTaskStats
[src]

Returns the "default value" for a type. Read more

impl Debug for ReplicationTaskStats
[src]

Formats the value using the given formatter. Read more

impl Clone for ReplicationTaskStats
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ReplicationTaskStats
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations