Struct google_siteverification1::api::WebResourceMethods [−][src]
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; use siteverification1::SiteVerification; let secret: oauth2::ApplicationSecret = Default::default(); let auth = yup_oauth2::InstalledFlowAuthenticator::builder( secret, yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect, ).build().await.unwrap(); let mut hub = SiteVerification::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), 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> WebResourceMethods<'a, C>[src]
pub fn delete(&self, id: &str) -> WebResourceDeleteCall<'a, C>[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(&self, id: &str) -> WebResourceGetCall<'a, C>[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 get_token(
&self,
request: SiteVerificationWebResourceGettokenRequest
) -> WebResourceGetTokenCall<'a, C>[src]
&self,
request: SiteVerificationWebResourceGettokenRequest
) -> WebResourceGetTokenCall<'a, C>
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 insert(
&self,
request: SiteVerificationWebResourceResource,
verification_method: &str
) -> WebResourceInsertCall<'a, C>[src]
&self,
request: SiteVerificationWebResourceResource,
verification_method: &str
) -> WebResourceInsertCall<'a, C>
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.
pub fn list(&self) -> WebResourceListCall<'a, C>[src]
Create a builder to help you perform the following task:
Get the list of your verified websites and domains.
pub fn patch(
&self,
request: SiteVerificationWebResourceResource,
id: &str
) -> WebResourcePatchCall<'a, C>[src]
&self,
request: SiteVerificationWebResourceResource,
id: &str
) -> WebResourcePatchCall<'a, C>
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 update(
&self,
request: SiteVerificationWebResourceResource,
id: &str
) -> WebResourceUpdateCall<'a, C>[src]
&self,
request: SiteVerificationWebResourceResource,
id: &str
) -> WebResourceUpdateCall<'a, C>
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.
Trait Implementations
impl<'a, C> MethodsBuilder for WebResourceMethods<'a, C>[src]
Auto Trait Implementations
impl<'a, C> !RefUnwindSafe for WebResourceMethods<'a, C>[src]
impl<'a, C> !Send for WebResourceMethods<'a, C>[src]
impl<'a, C> !Sync for WebResourceMethods<'a, C>[src]
impl<'a, C> Unpin for WebResourceMethods<'a, C>[src]
impl<'a, C> !UnwindSafe for WebResourceMethods<'a, C>[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[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.
pub 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>,