[][src]Struct google_drive2::DriveMethods

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_drive2 as drive2;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use drive2::DriveHub;
 
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 = DriveHub::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(...)`, `hide(...)`, `insert(...)`, `list(...)`, `unhide(...)` and `update(...)`
// to build up your call.
let rb = hub.drives();

Methods

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

pub fn update(
    &self,
    request: Drive,
    drive_id: &str
) -> DriveUpdateCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates the metadata for a shared drive.

Arguments

  • request - No description provided.
  • driveId - The ID of the shared drive.

pub fn unhide(&self, drive_id: &str) -> DriveUnhideCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Restores a shared drive to the default view.

Arguments

  • driveId - The ID of the shared drive.

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

Create a builder to help you perform the following task:

Permanently deletes a shared drive for which the user is an organizer. The shared drive cannot contain any untrashed items.

Arguments

  • driveId - The ID of the shared drive.

pub fn insert(
    &self,
    request: Drive,
    request_id: &str
) -> DriveInsertCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Creates a new shared drive.

Arguments

  • request - No description provided.
  • requestId - An ID, such as a random UUID, which uniquely identifies this user's request for idempotent creation of a shared drive. A repeated request by the same user and with the same request ID will avoid creating duplicates by attempting to create the same shared drive. If the shared drive already exists a 409 error will be returned.

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

Create a builder to help you perform the following task:

Lists the user's shared drives.

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

Create a builder to help you perform the following task:

Gets a shared drive's metadata by ID.

Arguments

  • driveId - The ID of the shared drive.

pub fn hide(&self, drive_id: &str) -> DriveHideCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Hides a shared drive from the default view.

Arguments

  • driveId - The ID of the shared drive.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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