Struct google_cloudtasks2_beta2::AttemptStatus[][src]

pub struct AttemptStatus {
    pub schedule_time: Option<String>,
    pub response_status: Option<Status>,
    pub response_time: Option<String>,
    pub dispatch_time: Option<String>,
}

The status of a task attempt.

This type is not used in any activity, and only used as part of another schema.

Fields

Output only. The time that this attempt was scheduled.

schedule_time will be truncated to the nearest microsecond.

Output only. The response from the target for this attempt.

If the task has not been attempted or the task is currently running then the response status is unset.

Output only. The time that this attempt response was received.

response_time will be truncated to the nearest microsecond.

Output only. The time that this attempt was dispatched.

dispatch_time will be truncated to the nearest microsecond.

Trait Implementations

impl Default for AttemptStatus
[src]

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

impl Clone for AttemptStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AttemptStatus
[src]

Formats the value using the given formatter. Read more

impl Part for AttemptStatus
[src]

Auto Trait Implementations