[−][src]Struct google_surveys2::Surveys
Central instance to access all Surveys related resource activities
Examples
Instantiate a new hub
extern crate hyper; extern crate hyper_rustls; extern crate yup_oauth2 as oauth2; extern crate google_surveys2 as surveys2; use surveys2::{Result, Error}; use std::default::Default; use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage}; use surveys2::Surveys; // 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::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), <MemoryStorage as Default>::default(), None); let mut hub = Surveys::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth); // 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.surveys().list() .token("kasd") .start_index(79) .max_results(93) .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> Surveys<C, A> where
C: BorrowMut<Client>,
A: GetToken,
[src]
C: BorrowMut<Client>,
A: GetToken,
pub fn new(client: C, authenticator: A) -> Surveys<C, A>
[src]
pub fn results(&'a self) -> ResultMethods<'a, C, A>
[src]
pub fn surveys(&'a self) -> SurveyMethods<'a, C, A>
[src]
pub fn user_agent(&mut self, agent_name: String) -> String
[src]
Set the user-agent header field to use in all requests to the server.
It defaults to google-api-rust-client/1.0.9
.
Returns the previously set user-agent.
pub fn base_url(&mut self, new_base_url: String) -> String
[src]
Set the base url to use in all requests to the server.
It defaults to https://www.googleapis.com/surveys/v2/
.
Returns the previously set base url.
pub fn root_url(&mut self, new_root_url: String) -> String
[src]
Set the root url to use in all requests to the server.
It defaults to https://www.googleapis.com/
.
Returns the previously set root url.
Trait Implementations
Auto Trait Implementations
impl<C, A> Send for Surveys<C, A> where
A: Send,
C: Send,
A: Send,
C: Send,
impl<C, A> Unpin for Surveys<C, A> where
A: Unpin,
C: Unpin,
A: Unpin,
C: Unpin,
impl<C, A> !Sync for Surveys<C, A>
impl<C, A> UnwindSafe for Surveys<C, A> where
A: UnwindSafe,
C: UnwindSafe,
A: UnwindSafe,
C: UnwindSafe,
impl<C, A> !RefUnwindSafe for Surveys<C, A>
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Typeable for T where
T: Any,
T: Any,