[][src]Struct google_siteverification1::WebResourceMethods

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 hyper_rustls;
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::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
                              <MemoryStorage as Default>::default(), None);
let mut hub = SiteVerification::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 `delete(...)`, `get(...)`, `get_token(...)`, `insert(...)`, `list(...)`, `patch(...)` and `update(...)`
// to build up your call.
let rb = hub.web_resource();

Implementations

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

pub fn get(&self, id: &str) -> WebResourceGetCall<'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.

pub fn patch(
    &self,
    request: SiteVerificationWebResourceResource,
    id: &str
) -> WebResourcePatchCall<'a, C, A>
[src]

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.

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

Create a builder to help you perform the following task:

Get the list of your verified websites and domains.

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

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.

pub fn get_token(
    &self,
    request: SiteVerificationWebResourceGettokenRequest
) -> WebResourceGetTokenCall<'a, C, A>
[src]

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.

pub fn update(
    &self,
    request: SiteVerificationWebResourceResource,
    id: &str
) -> WebResourceUpdateCall<'a, C, A>
[src]

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.

pub fn insert(
    &self,
    request: SiteVerificationWebResourceResource,
    verification_method: &str
) -> WebResourceInsertCall<'a, C, A>
[src]

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]

Auto Trait Implementations

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

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

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

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

impl<'a, C, A> !UnwindSafe for WebResourceMethods<'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