Struct google_siteverification1::WebResourceMethods [] [src]

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate yup_oauth2 as oauth2;
extern crate google_siteverification1 as siteverification1;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use siteverification1::SiteVerification;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::new(),
                              <MemoryStorage as Default>::default(), None);
let mut hub = SiteVerification::new(hyper::Client::new(), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `delete(...)`, `get(...)`, `get_token(...)`, `insert(...)`, `list(...)`, `patch(...)` and `update(...)`
// to build up your call.
let rb = hub.web_resource();

Methods

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

Create a builder to help you perform the following task:

Get the most current data for a website or domain.

Arguments

  • id - The id of a verified site or domain.

Create a builder to help you perform the following task:

Modify the list of owners for your website or domain. This method supports patch semantics.

Arguments

  • request - No description provided.
  • id - The id of a verified site or domain.

Create a builder to help you perform the following task:

Get the list of your verified websites and domains.

Create a builder to help you perform the following task:

Relinquish ownership of a website or domain.

Arguments

  • id - The id of a verified site or domain.

Create a builder to help you perform the following task:

Get a verification token for placing on a website or domain.

Arguments

  • request - No description provided.

Create a builder to help you perform the following task:

Modify the list of owners for your website or domain.

Arguments

  • request - No description provided.
  • id - The id of a verified site or domain.

Create a builder to help you perform the following task:

Attempt verification of a website or domain.

Arguments

  • request - No description provided.
  • verificationMethod - The method to use for verifying a site or domain.

Trait Implementations

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