[][src]Struct google_analytics3::DataMethods

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_analytics3 as analytics3;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use analytics3::Analytics;
 
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 = Analytics::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 `ga_get(...)`, `mcf_get(...)` and `realtime_get(...)`
// to build up your call.
let rb = hub.data();

Methods

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

pub fn mcf_get(
    &self,
    ids: &str,
    start_date: &str,
    end_date: &str,
    metrics: &str
) -> DataMcfGetCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Returns Analytics Multi-Channel Funnels data for a view (profile).

Arguments

  • ids - Unique table ID for retrieving Analytics data. Table ID is of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
  • start-date - Start date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is 7daysAgo.
  • end-date - End date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is 7daysAgo.
  • metrics - A comma-separated list of Multi-Channel Funnels metrics. E.g., 'mcf:totalConversions,mcf:totalConversionValue'. At least one metric must be specified.

pub fn realtime_get(
    &self,
    ids: &str,
    metrics: &str
) -> DataRealtimeGetCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Returns real time data for a view (profile).

Arguments

  • ids - Unique table ID for retrieving real time data. Table ID is of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
  • metrics - A comma-separated list of real time metrics. E.g., 'rt:activeUsers'. At least one metric must be specified.

pub fn ga_get(
    &self,
    ids: &str,
    start_date: &str,
    end_date: &str,
    metrics: &str
) -> DataGaGetCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Returns Analytics data for a view (profile).

Arguments

  • ids - Unique table ID for retrieving Analytics data. Table ID is of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.
  • start-date - Start date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is 7daysAgo.
  • end-date - End date for fetching Analytics data. Request can should specify an end date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is yesterday.
  • metrics - A comma-separated list of Analytics metrics. E.g., 'ga:sessions,ga:pageviews'. At least one metric must be specified.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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