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<i32>,
pub attempt_response_count: Option<i32>,
}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>
Output only. The status of the task's last attempt.
This field is not calculated for pull tasks.
first_attempt_status: Option<AttemptStatus>
Output only. The status of the task's first attempt.
Only 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<i32>
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<i32>
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]
impl Default for TaskStatusfn default() -> TaskStatus[src]
fn default() -> TaskStatusReturns the "default value" for a type. Read more
impl Clone for TaskStatus[src]
impl Clone for TaskStatusfn clone(&self) -> TaskStatus[src]
fn clone(&self) -> TaskStatusReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for TaskStatus[src]
impl Debug for TaskStatusfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Part for TaskStatus[src]
impl Part for TaskStatusAuto Trait Implementations
impl Send for TaskStatus
impl Send for TaskStatusimpl Sync for TaskStatus
impl Sync for TaskStatus