Struct google_fusiontables2::Task[][src]

pub struct Task {
    pub started: Option<bool>,
    pub progress: Option<String>,
    pub kind: Option<String>,
    pub type_: Option<String>,
    pub task_id: Option<String>,
}

A background task on a table, initiated for time- or resource-consuming operations such as changing column types or deleting all rows.

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

false while the table is busy with some other task. true if this background task is currently running.

Task percentage completion.

Type of the resource. This is always "fusiontables#task".

Type of background task.

Identifier for the task.

Trait Implementations

impl Default for Task
[src]

Returns the "default value" for a type. Read more

impl Clone for Task
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Task
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for Task
[src]

Auto Trait Implementations

impl Send for Task

impl Sync for Task