[][src]Struct google_calendar3::CalendarListMethods

pub struct CalendarListMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_calendar3 as calendar3;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use calendar3::CalendarHub;
 
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 = CalendarHub::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 `delete(...)`, `get(...)`, `insert(...)`, `list(...)`, `patch(...)`, `update(...)` and `watch(...)`
// to build up your call.
let rb = hub.calendar_list();

Methods

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

pub fn update(
    &self,
    request: CalendarListEntry,
    calendar_id: &str
) -> CalendarListUpdateCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates an existing calendar on the user's calendar list.

Arguments

  • request - No description provided.
  • calendarId - Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.

pub fn delete(&self, calendar_id: &str) -> CalendarListDeleteCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Removes a calendar from the user's calendar list.

Arguments

  • calendarId - Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.

pub fn get(&self, calendar_id: &str) -> CalendarListGetCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Returns a calendar from the user's calendar list.

Arguments

  • calendarId - Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.

pub fn list(&self) -> CalendarListListCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Returns the calendars on the user's calendar list.

pub fn insert(
    &self,
    request: CalendarListEntry
) -> CalendarListInsertCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Inserts an existing calendar into the user's calendar list.

Arguments

  • request - No description provided.

pub fn patch(
    &self,
    request: CalendarListEntry,
    calendar_id: &str
) -> CalendarListPatchCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates an existing calendar on the user's calendar list. This method supports patch semantics.

Arguments

  • request - No description provided.
  • calendarId - Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.

pub fn watch(&self, request: Channel) -> CalendarListWatchCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Watch for changes to CalendarList resources.

Arguments

  • request - No description provided.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<'a, C, A> !RefUnwindSafe for CalendarListMethods<'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.