[][src]Struct google_drive3::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_drive3 as drive3;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use drive3::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(...)`, `create(...)`, `delete(...)`, `empty_trash(...)`, `export(...)`, `generate_ids(...)`, `get(...)`, `list(...)`, `update(...)` and `watch(...)`
// to build up your call.
let rb = hub.files();

Implementations

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:

Subscribes to changes to a file

Arguments

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

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 delete(&self, file_id: &str) -> FileDeleteCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Permanently deletes a file owned by the user without moving it to the trash. If the file belongs to a shared drive the user must be an organizer on the parent. If the target is a folder, all descendants owned by the user are also deleted.

Arguments

  • fileId - The ID of the file.

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 a file and applies any requested updates with patch semantics.

Arguments

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

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 or searches files.

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 create or copy requests.

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

Create a builder to help you perform the following task:

Creates a new file.

Arguments

  • request - No description provided.

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 a file's metadata and/or content with patch semantics.

Arguments

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

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 or content by ID.

Arguments

  • fileId - The ID of the file.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<'a, C, A> !UnwindSafe for FileMethods<'a, C, 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, 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> Typeable for T where
    T: Any