[][src]Struct google_drive2::FileMethods

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

A builder providing access to all methods supported on file 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 `copy(...)`, `delete(...)`, `empty_trash(...)`, `export(...)`, `generate_ids(...)`, `get(...)`, `insert(...)`, `list(...)`, `patch(...)`, `touch(...)`, `trash(...)`, `untrash(...)`, `update(...)` and `watch(...)`
// to build up your call.
let rb = hub.files();

Methods

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

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

Create a builder to help you perform the following task:

Subscribe to changes on a file

Arguments

  • request - No description provided.
  • fileId - The ID for the file in question.

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

Create a builder to help you perform the following task:

Insert a new file.

Arguments

  • request - No description provided.

pub fn untrash(&self, file_id: &str) -> FileUntrashCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Restores a file from the trash.

Arguments

  • fileId - The ID of the file to untrash.

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

Create a builder to help you perform the following task:

Permanently deletes a file by ID. Skips the trash. The currently authenticated user must own the file or be an organizer on the parent for shared drive files.

Arguments

  • fileId - The ID of the file to delete.

pub fn copy(&self, request: File, file_id: &str) -> FileCopyCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Creates a copy of the specified file.

Arguments

  • request - No description provided.
  • fileId - The ID of the file to copy.

pub fn trash(&self, file_id: &str) -> FileTrashCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Moves a file to the trash. The currently authenticated user must own the file or be at least a fileOrganizer on the parent for shared drive files.

Arguments

  • fileId - The ID of the file to trash.

pub fn export(&self, file_id: &str, mime_type: &str) -> FileExportCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Exports a Google Doc to the requested MIME type and returns the exported content. Please note that the exported content is limited to 10MB.

Arguments

  • fileId - The ID of the file.
  • mimeType - The MIME type of the format requested for this export.

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

Create a builder to help you perform the following task:

Permanently deletes all of the user's trashed files.

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

Create a builder to help you perform the following task:

Lists the user's files.

pub fn touch(&self, file_id: &str) -> FileTouchCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Set the file's updated time to the current server time.

Arguments

  • fileId - The ID of the file to update.

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

Create a builder to help you perform the following task:

Generates a set of file IDs which can be provided in insert or copy requests.

pub fn update(&self, request: File, file_id: &str) -> FileUpdateCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Updates file metadata and/or content.

Arguments

  • request - No description provided.
  • fileId - The ID of the file to update.

pub fn patch(&self, request: File, file_id: &str) -> FilePatchCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Updates file metadata and/or content. This method supports patch semantics.

Arguments

  • request - No description provided.
  • fileId - The ID of the file to update.

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

Create a builder to help you perform the following task:

Gets a file's metadata by ID.

Arguments

  • fileId - The ID for the file in question.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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