[][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 Resource for Task[src]

impl ResponseResult for Task[src]

impl RequestValue for Task[src]

impl Default for Task[src]

impl Clone for Task[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Task[src]

impl Serialize for Task[src]

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

Auto Trait Implementations

impl Send for Task

impl Unpin for Task

impl Sync for Task

impl UnwindSafe for Task

impl RefUnwindSafe for Task

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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