Struct google_gmailpostmastertools1::api::DomainMethods [−][src]
A builder providing access to all methods supported on domain resources.
It is not used directly, but through the PostmasterTools hub.
Example
Instantiate a resource builder
extern crate hyper; extern crate hyper_rustls; extern crate yup_oauth2 as oauth2; extern crate google_gmailpostmastertools1 as gmailpostmastertools1; use std::default::Default; use oauth2; use gmailpostmastertools1::PostmasterTools; let secret: oauth2::ApplicationSecret = Default::default(); let auth = yup_oauth2::InstalledFlowAuthenticator::builder( secret, yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect, ).build().await.unwrap(); let mut hub = PostmasterTools::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 `get(...)`, `list(...)`, `traffic_stats_get(...)` and `traffic_stats_list(...)` // to build up your call. let rb = hub.domains();
Implementations
impl<'a> DomainMethods<'a>[src]
pub fn traffic_stats_get(&self, name: &str) -> DomainTrafficStatGetCall<'a>[src]
Create a builder to help you perform the following task:
Get traffic statistics for a domain on a specific date. Returns PERMISSION_DENIED if user does not have permission to access TrafficStats for the domain.
Arguments
name- The resource name of the traffic statistics to get. E.g., domains/mymail.mydomain.com/trafficStats/20160807.
pub fn traffic_stats_list(&self, parent: &str) -> DomainTrafficStatListCall<'a>[src]
Create a builder to help you perform the following task:
List traffic statistics for all available days. Returns PERMISSION_DENIED if user does not have permission to access TrafficStats for the domain.
Arguments
parent- The resource name of the domain whose traffic statistics we’d like to list. It should have the formdomains/{domain_name}, where domain_name is the fully qualified domain name.
pub fn get(&self, name: &str) -> DomainGetCall<'a>[src]
Create a builder to help you perform the following task:
Gets a specific domain registered by the client. Returns NOT_FOUND if the domain does not exist.
Arguments
name- The resource name of the domain. It should have the formdomains/{domain_name}, where domain_name is the fully qualified domain name.
pub fn list(&self) -> DomainListCall<'a>[src]
Create a builder to help you perform the following task:
Lists the domains that have been registered by the client. The order of domains in the response is unspecified and non-deterministic. Newly created domains will not necessarily be added to the end of this list.
Trait Implementations
impl<'a> MethodsBuilder for DomainMethods<'a>[src]
Auto Trait Implementations
impl<'a> !RefUnwindSafe for DomainMethods<'a>
impl<'a> Send for DomainMethods<'a>
impl<'a> Sync for DomainMethods<'a>
impl<'a> Unpin for DomainMethods<'a>
impl<'a> !UnwindSafe for DomainMethods<'a>
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>,