[][src]Struct google_taskqueue1_beta2::Task

pub struct Task {
    pub kind: Option<String>,
    pub lease_timestamp: Option<String>,
    pub queue_name: Option<String>,
    pub retry_count: Option<i32>,
    pub tag: Option<String>,
    pub payload_base64: Option<String>,
    pub id: Option<String>,
    pub enqueue_timestamp: Option<String>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

kind: Option<String>

The kind of object returned, in this case set to task.

lease_timestamp: Option<String>

Time (in seconds since the epoch) at which the task lease will expire. This value is 0 if the task isnt currently leased out to a worker.

queue_name: Option<String>

Name of the queue that the task is in.

retry_count: Option<i32>

The number of leases applied to this task.

tag: Option<String>

Tag for the task, could be used later to lease tasks grouped by a specific tag.

payload_base64: Option<String>

A bag of bytes which is the task payload. The payload on the JSON side is always Base64 encoded.

id: Option<String>

Name of the task.

enqueue_timestamp: Option<String>

Time (in seconds since the epoch) at which the task was enqueued.

Trait Implementations

impl Clone for Task[src]

impl Debug for Task[src]

impl Default for Task[src]

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

impl RequestValue for Task[src]

impl Resource for Task[src]

impl ResponseResult for Task[src]

impl Serialize for Task[src]

Auto Trait Implementations

impl RefUnwindSafe for Task

impl Send for Task

impl Sync for Task

impl Unpin for Task

impl UnwindSafe for Task

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