Struct rusoto_mgh::Task[][src]

pub struct Task {
    pub progress_percent: Option<i64>,
    pub status: String,
    pub status_detail: Option<String>,
}

Task object encapsulating task information.

Fields

Indication of the percentage completion of the task.

Status of the task - Not Started, In-Progress, Complete.

Details of task status as notified by a migration tool. A tool might use this field to provide clarifying information about the status that is unique to that tool or that explains an error state.

Trait Implementations

impl Default for Task
[src]

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

impl Debug for Task
[src]

Formats the value using the given formatter. Read more

impl Clone for Task
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Task
[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

impl Send for Task

impl Sync for Task