Struct google_tasks1::Task [] [src]

pub struct Task {
    pub status: Option<String>,
    pub kind: Option<String>,
    pub parent: Option<String>,
    pub links: Option<Vec<TaskLinks>>,
    pub title: Option<String>,
    pub deleted: Option<bool>,
    pub completed: Option<String>,
    pub updated: Option<String>,
    pub due: Option<String>,
    pub etag: Option<String>,
    pub id: Option<String>,
    pub position: Option<String>,
    pub hidden: Option<bool>,
    pub notes: Option<String>,
    pub self_link: 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

Status of the task. This is either "needsAction" or "completed".

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

Parent task identifier. This field is omitted if it is a top-level task. This field is read-only. Use the "move" method to move the task under a different parent or to the top level.

Collection of links. This collection is read-only.

Title of the task.

Flag indicating whether the task has been deleted. The default if False.

Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed.

Last modification time of the task (as a RFC 3339 timestamp).

Due date of the task (as a RFC 3339 timestamp). Optional.

ETag of the resource.

Task identifier.

String indicating the position of the task among its sibling tasks under the same parent task or at the top level. If this string is greater than another task's corresponding position string according to lexicographical ordering, the task is positioned after the other task under the same parent task (or at the top level). This field is read-only. Use the "move" method to move the task to another position.

Flag indicating whether the task is hidden. This is the case if the task had been marked completed when the task list was last cleared. The default is False. This field is read-only.

Notes describing the task. Optional.

URL pointing to this task. Used to retrieve, update, or delete this task.

Trait Implementations

impl Debug for Task
[src]

Formats the value using the given formatter.

impl Clone for Task
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Task
[src]

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

impl RequestValue for Task
[src]

impl Resource for Task
[src]

impl ResponseResult for Task
[src]