Struct google_cloudtasks2_beta3::Attempt[][src]

pub struct Attempt {
    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 response_time is unset, then the task has not been attempted or is currently running and the response_status field is meaningless.

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 Attempt
[src]

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

impl Clone for Attempt
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Attempt
[src]

Formats the value using the given formatter. Read more

impl Part for Attempt
[src]

Auto Trait Implementations

impl Send for Attempt

impl Sync for Attempt