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
schedule_time: Option<String>
Output only.
The time that this attempt was scheduled.
schedule_time will be truncated to the nearest microsecond.
response_status: Option<Status>
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 google.rpc.Code.UNKNOWN.
response_time: Option<String>
Output only.
The time that this attempt response was received.
response_time will be truncated to the nearest microsecond.
dispatch_time: Option<String>
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]
fn default() -> AttemptStatus[src]
Returns the "default value" for a type. Read more
impl Clone for AttemptStatus[src]
fn clone(&self) -> AttemptStatus[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more