Struct google_cloudtasks2_beta2::TaskStatus
[−]
[src]
pub struct TaskStatus {
pub last_attempt_status: Option<AttemptStatus>,
pub first_attempt_status: Option<AttemptStatus>,
pub attempt_dispatch_count: Option<i64>,
pub attempt_response_count: Option<i64>,
}Status of the task.
This type is not used in any activity, and only used as part of another schema.
Fields
last_attempt_status: Option<AttemptStatus>
first_attempt_status: Option<AttemptStatus>
Output only.
The status of the task's first attempt.
Only AttemptStatus.dispatch_time will be set. The other AttemptStatus information is not retained by Cloud Tasks.
This field is not calculated for pull tasks.
attempt_dispatch_count: Option<i64>
Output only.
The number of attempts dispatched. This count includes tasks which have been dispatched but haven't received a response.
attempt_response_count: Option<i64>
Output only.
The number of attempts which have received a response.
This field is not calculated for pull tasks.
Trait Implementations
impl Default for TaskStatus[src]
fn default() -> TaskStatus[src]
Returns the "default value" for a type. Read more
impl Clone for TaskStatus[src]
fn clone(&self) -> TaskStatus[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