Struct google_dfareporting3::api::Dfareporting[][src]

pub struct Dfareporting { /* fields omitted */ }

Central instance to access all Dfareporting related resource activities

Examples

Instantiate a new hub

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_dfareporting3 as dfareporting3;
use dfareporting3::{Result, Error};
use std::default::Default;
use oauth2;
use dfareporting3::Dfareporting;
 
// Get an ApplicationSecret instance by some means. It contains the `client_id` and 
// `client_secret`, among other things.
let secret: oauth2::ApplicationSecret = Default::default();
// Instantiate the authenticator. It will choose a suitable authentication flow for you, 
// unless you replace  `None` with the desired Flow.
// Provide your own `AuthenticatorDelegate` to adjust the way it operates and get feedback about 
// what's going on. You probably want to bring in your own `TokenStorage` to persist tokens and
// retrieve them from storage.
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
        secret,
        yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = Dfareporting::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), auth);
// You can configure optional parameters by calling the respective setters at will, and
// execute the final call using `doit()`.
// Values shown here are possibly random and not representative !
let result = hub.reports().files_list("profileId", "reportId")
             .sort_order("Lorem")
             .sort_field("gubergren")
             .page_token("eos")
             .max_results(-4)
             .doit().await;
 
match result {
    Err(e) => match e {
        // The Error enum provides details about what exactly happened.
        // You can also just use its `Debug`, `Display` or `Error` traits
         Error::HttpError(_)
        |Error::Io(_)
        |Error::MissingAPIKey
        |Error::MissingToken(_)
        |Error::Cancelled
        |Error::UploadSizeLimitExceeded(_, _)
        |Error::Failure(_)
        |Error::BadRequest(_)
        |Error::FieldClash(_)
        |Error::JsonDecodeError(_, _) => println!("{}", e),
    },
    Ok(res) => println!("Success: {:?}", res),
}

Implementations

impl<'a> Dfareporting[src]

pub fn new(
    client: Client<HttpsConnector<HttpConnector>, Body>,
    authenticator: Authenticator<HttpsConnector<HttpConnector>>
) -> Dfareporting
[src]

pub fn account_active_ad_summaries(
    &'a self
) -> AccountActiveAdSummaryMethods<'a>
[src]

pub fn account_permission_groups(&'a self) -> AccountPermissionGroupMethods<'a>[src]

pub fn account_permissions(&'a self) -> AccountPermissionMethods<'a>[src]

pub fn account_user_profiles(&'a self) -> AccountUserProfileMethods<'a>[src]

pub fn accounts(&'a self) -> AccountMethods<'a>[src]

pub fn ads(&'a self) -> AdMethods<'a>[src]

pub fn advertiser_groups(&'a self) -> AdvertiserGroupMethods<'a>[src]

pub fn advertiser_landing_pages(&'a self) -> AdvertiserLandingPageMethods<'a>[src]

pub fn advertisers(&'a self) -> AdvertiserMethods<'a>[src]

pub fn browsers(&'a self) -> BrowserMethods<'a>[src]

pub fn campaign_creative_associations(
    &'a self
) -> CampaignCreativeAssociationMethods<'a>
[src]

pub fn campaigns(&'a self) -> CampaignMethods<'a>[src]

pub fn change_logs(&'a self) -> ChangeLogMethods<'a>[src]

pub fn cities(&'a self) -> CityMethods<'a>[src]

pub fn connection_types(&'a self) -> ConnectionTypeMethods<'a>[src]

pub fn content_categories(&'a self) -> ContentCategoryMethods<'a>[src]

pub fn conversions(&'a self) -> ConversionMethods<'a>[src]

pub fn countries(&'a self) -> CountryMethods<'a>[src]

pub fn creative_assets(&'a self) -> CreativeAssetMethods<'a>[src]

pub fn creative_field_values(&'a self) -> CreativeFieldValueMethods<'a>[src]

pub fn creative_fields(&'a self) -> CreativeFieldMethods<'a>[src]

pub fn creative_groups(&'a self) -> CreativeGroupMethods<'a>[src]

pub fn creatives(&'a self) -> CreativeMethods<'a>[src]

pub fn dimension_values(&'a self) -> DimensionValueMethods<'a>[src]

pub fn directory_site_contacts(&'a self) -> DirectorySiteContactMethods<'a>[src]

pub fn directory_sites(&'a self) -> DirectorySiteMethods<'a>[src]

pub fn dynamic_targeting_keys(&'a self) -> DynamicTargetingKeyMethods<'a>[src]

pub fn event_tags(&'a self) -> EventTagMethods<'a>[src]

pub fn files(&'a self) -> FileMethods<'a>[src]

pub fn floodlight_activities(&'a self) -> FloodlightActivityMethods<'a>[src]

pub fn floodlight_activity_groups(
    &'a self
) -> FloodlightActivityGroupMethods<'a>
[src]

pub fn floodlight_configurations(&'a self) -> FloodlightConfigurationMethods<'a>[src]

pub fn inventory_items(&'a self) -> InventoryItemMethods<'a>[src]

pub fn languages(&'a self) -> LanguageMethods<'a>[src]

pub fn metros(&'a self) -> MetroMethods<'a>[src]

pub fn mobile_carriers(&'a self) -> MobileCarrierMethods<'a>[src]

pub fn operating_system_versions(&'a self) -> OperatingSystemVersionMethods<'a>[src]

pub fn operating_systems(&'a self) -> OperatingSystemMethods<'a>[src]

pub fn order_documents(&'a self) -> OrderDocumentMethods<'a>[src]

pub fn orders(&'a self) -> OrderMethods<'a>[src]

pub fn placement_groups(&'a self) -> PlacementGroupMethods<'a>[src]

pub fn placement_strategies(&'a self) -> PlacementStrategyMethods<'a>[src]

pub fn placements(&'a self) -> PlacementMethods<'a>[src]

pub fn platform_types(&'a self) -> PlatformTypeMethods<'a>[src]

pub fn postal_codes(&'a self) -> PostalCodeMethods<'a>[src]

pub fn projects(&'a self) -> ProjectMethods<'a>[src]

pub fn regions(&'a self) -> RegionMethods<'a>[src]

pub fn remarketing_list_shares(&'a self) -> RemarketingListShareMethods<'a>[src]

pub fn remarketing_lists(&'a self) -> RemarketingListMethods<'a>[src]

pub fn reports(&'a self) -> ReportMethods<'a>[src]

pub fn sites(&'a self) -> SiteMethods<'a>[src]

pub fn sizes(&'a self) -> SizeMethods<'a>[src]

pub fn subaccounts(&'a self) -> SubaccountMethods<'a>[src]

pub fn targetable_remarketing_lists(
    &'a self
) -> TargetableRemarketingListMethods<'a>
[src]

pub fn targeting_templates(&'a self) -> TargetingTemplateMethods<'a>[src]

pub fn user_profiles(&'a self) -> UserProfileMethods<'a>[src]

pub fn user_role_permission_groups(
    &'a self
) -> UserRolePermissionGroupMethods<'a>
[src]

pub fn user_role_permissions(&'a self) -> UserRolePermissionMethods<'a>[src]

pub fn user_roles(&'a self) -> UserRoleMethods<'a>[src]

pub fn video_formats(&'a self) -> VideoFormatMethods<'a>[src]

pub fn user_agent(&mut self, agent_name: String) -> String[src]

Set the user-agent header field to use in all requests to the server. It defaults to google-api-rust-client/2.0.3.

Returns the previously set user-agent.

pub fn base_url(&mut self, new_base_url: String) -> String[src]

Set the base url to use in all requests to the server. It defaults to https://www.googleapis.com/dfareporting/v3.0/.

Returns the previously set base url.

pub fn root_url(&mut self, new_root_url: String) -> String[src]

Set the root url to use in all requests to the server. It defaults to https://www.googleapis.com/.

Returns the previously set root url.

Trait Implementations

impl<'a> Hub for Dfareporting[src]

Auto Trait Implementations

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> Instrument 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.