Struct google_tasks1::api::TaskMethods[][src]

pub struct TaskMethods<'a> { /* fields omitted */ }

A builder providing access to all methods supported on task resources. It is not used directly, but through the TasksHub hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_tasks1 as tasks1;
 
use std::default::Default;
use oauth2;
use tasks1::TasksHub;
 
let secret: oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
        secret,
        yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = TasksHub::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `clear(...)`, `delete(...)`, `get(...)`, `insert(...)`, `list(...)`, `move_(...)`, `patch(...)` and `update(...)`
// to build up your call.
let rb = hub.tasks();

Implementations

impl<'a> TaskMethods<'a>[src]

pub fn clear(&self, tasklist: &str) -> TaskClearCall<'a>[src]

Create a builder to help you perform the following task:

Clears all completed tasks from the specified task list. The affected tasks will be marked as ‘hidden’ and no longer be returned by default when retrieving all tasks for a task list.

Arguments

  • tasklist - Task list identifier.

pub fn delete(&self, tasklist: &str, task: &str) -> TaskDeleteCall<'a>[src]

Create a builder to help you perform the following task:

Deletes the specified task from the task list.

Arguments

  • tasklist - Task list identifier.
  • task - Task identifier.

pub fn get(&self, tasklist: &str, task: &str) -> TaskGetCall<'a>[src]

Create a builder to help you perform the following task:

Returns the specified task.

Arguments

  • tasklist - Task list identifier.
  • task - Task identifier.

pub fn insert(&self, request: Task, tasklist: &str) -> TaskInsertCall<'a>[src]

Create a builder to help you perform the following task:

Creates a new task on the specified task list.

Arguments

  • request - No description provided.
  • tasklist - Task list identifier.

pub fn list(&self, tasklist: &str) -> TaskListCall<'a>[src]

Create a builder to help you perform the following task:

Returns all tasks in the specified task list.

Arguments

  • tasklist - Task list identifier.

pub fn move_(&self, tasklist: &str, task: &str) -> TaskMoveCall<'a>[src]

Create a builder to help you perform the following task:

Moves the specified task to another position in the task list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks.

Arguments

  • tasklist - Task list identifier.
  • task - Task identifier.

pub fn patch(
    &self,
    request: Task,
    tasklist: &str,
    task: &str
) -> TaskPatchCall<'a>
[src]

Create a builder to help you perform the following task:

Updates the specified task. This method supports patch semantics.

Arguments

  • request - No description provided.
  • tasklist - Task list identifier.
  • task - Task identifier.

pub fn update(
    &self,
    request: Task,
    tasklist: &str,
    task: &str
) -> TaskUpdateCall<'a>
[src]

Create a builder to help you perform the following task:

Updates the specified task.

Arguments

  • request - No description provided.
  • tasklist - Task list identifier.
  • task - Task identifier.

Trait Implementations

Auto Trait Implementations

impl<'a> !RefUnwindSafe for TaskMethods<'a>

impl<'a> Send for TaskMethods<'a>

impl<'a> Sync for TaskMethods<'a>

impl<'a> Unpin for TaskMethods<'a>

impl<'a> !UnwindSafe for TaskMethods<'a>

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> From<T> for T[src]

impl<T> Instrument 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.