[][src]Struct google_cloudtasks2_beta3::Attempt

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

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.

dispatch_time: Option<String>

Output only. The time that this attempt was dispatched.

dispatch_time will be truncated to the nearest microsecond.

response_time: Option<String>

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

response_time will be truncated to the nearest microsecond.

response_status: Option<Status>

Output only. The response from the worker 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.

Trait Implementations

impl Clone for Attempt[src]

impl Debug for Attempt[src]

impl Default for Attempt[src]

impl<'de> Deserialize<'de> for Attempt[src]

impl Part for Attempt[src]

impl Serialize for Attempt[src]

Auto Trait Implementations

impl RefUnwindSafe for Attempt

impl Send for Attempt

impl Sync for Attempt

impl Unpin for Attempt

impl UnwindSafe for Attempt

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any