[][src]Struct google_tasks1::TaskMethods

pub struct TaskMethods<'a, C, A> where
    C: 'a,
    A: '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::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use tasks1::TasksHub;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
                              <MemoryStorage as Default>::default(), None);
let mut hub = TasksHub::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), 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();

Methods

impl<'a, C, A> TaskMethods<'a, C, A>[src]

pub fn list(&self, tasklist: &str) -> TaskListCall<'a, C, 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 update(
    &self,
    request: Task,
    tasklist: &str,
    task: &str
) -> TaskUpdateCall<'a, C, 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.

pub fn patch(
    &self,
    request: Task,
    tasklist: &str,
    task: &str
) -> TaskPatchCall<'a, C, 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 clear(&self, tasklist: &str) -> TaskClearCall<'a, C, 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 move_(&self, tasklist: &str, task: &str) -> TaskMoveCall<'a, C, 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 delete(&self, tasklist: &str, task: &str) -> TaskDeleteCall<'a, C, 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, C, 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, C, 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.

Trait Implementations

impl<'a, C, A> MethodsBuilder for TaskMethods<'a, C, A>[src]

Auto Trait Implementations

impl<'a, C, A> !Send for TaskMethods<'a, C, A>

impl<'a, C, A> Unpin for TaskMethods<'a, C, A>

impl<'a, C, A> !Sync for TaskMethods<'a, C, A>

impl<'a, C, A> !UnwindSafe for TaskMethods<'a, C, A>

impl<'a, C, A> !RefUnwindSafe for TaskMethods<'a, C, A>

Blanket Implementations

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.