Struct google_storage1::Storage [] [src]

pub struct Storage<C, A> { /* fields omitted */ }

Central instance to access all Storage related resource activities

Examples

Instantiate a new hub

extern crate hyper;
extern crate yup_oauth2 as oauth2;
extern crate google_storage1 as storage1;
use storage1::Object;
use storage1::{Result, Error};
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use storage1::Storage;
 
// Get an ApplicationSecret instance by some means. It contains the `client_id` and 
// `client_secret`, among other things.
let secret: ApplicationSecret = Default::default();
// Instantiate the authenticator. It will choose a suitable authentication flow for you, 
// unless you replace  `None` with the desired Flow.
// Provide your own `AuthenticatorDelegate` to adjust the way it operates and get feedback about 
// what's going on. You probably want to bring in your own `TokenStorage` to persist tokens and
// retrieve them from storage.
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::new(),
                              <MemoryStorage as Default>::default(), None);
let mut hub = Storage::new(hyper::Client::new(), auth);
// As the method needs a request, you would usually fill it with the desired information
// into the respective structure. Some of the parts shown here might not be applicable !
// Values shown here are possibly random and not representative !
let mut req = Object::default();
 
// You can configure optional parameters by calling the respective setters at will, and
// execute the final call using `doit()`.
// Values shown here are possibly random and not representative !
let result = hub.objects().rewrite(req, "sourceBucket", "sourceObject", "destinationBucket", "destinationObject")
             .source_generation("justo")
             .rewrite_token("et")
             .projection("et")
             .max_bytes_rewritten_per_call("diam")
             .if_source_metageneration_not_match("ipsum")
             .if_source_metageneration_match("Lorem")
             .if_source_generation_not_match("et")
             .if_source_generation_match("duo")
             .if_metageneration_not_match("aliquyam")
             .if_metageneration_match("sea")
             .if_generation_not_match("Lorem")
             .if_generation_match("eos")
             .destination_predefined_acl("erat")
             .destination_kms_key_name("sadipscing")
             .doit();
 
match result {
    Err(e) => match e {
        // The Error enum provides details about what exactly happened.
        // You can also just use its `Debug`, `Display` or `Error` traits
         Error::HttpError(_)
        |Error::MissingAPIKey
        |Error::MissingToken(_)
        |Error::Cancelled
        |Error::UploadSizeLimitExceeded(_, _)
        |Error::Failure(_)
        |Error::BadRequest(_)
        |Error::FieldClash(_)
        |Error::JsonDecodeError(_, _) => println!("{}", e),
    },
    Ok(res) => println!("Success: {:?}", res),
}

Methods

impl<'a, C, A> Storage<C, A> where C: BorrowMut<Client>, A: GetToken
[src]

Set the user-agent header field to use in all requests to the server. It defaults to google-api-rust-client/0.1.15.

Returns the previously set user-agent.

Trait Implementations

impl<'a, C, A> Hub for Storage<C, A>
[src]