pub struct Dfareporting<S> {
    pub client: Client<S, Body>,
    pub auth: Box<dyn GetToken>,
    /* private fields */
}
Expand description

Central instance to access all Dfareporting related resource activities

§Examples

Instantiate a new hub

extern crate hyper;
extern crate hyper_rustls;
extern crate google_dfareporting3d3 as dfareporting3d3;
use dfareporting3d3::{Result, Error};
use std::default::Default;
use dfareporting3d3::{Dfareporting, oauth2, hyper, hyper_rustls, chrono, FieldMask};
 
// 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 = oauth2::InstalledFlowAuthenticator::builder(
        secret,
        oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = Dfareporting::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().build()), 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(-55, -62)
             .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),
}

Fields§

§client: Client<S, Body>§auth: Box<dyn GetToken>

Implementations§

source§

impl<'a, S> Dfareporting<S>

source

pub fn new<A: 'static + GetToken>( client: Client<S, Body>, auth: A ) -> Dfareporting<S>

source

pub fn account_active_ad_summaries( &'a self ) -> AccountActiveAdSummaryMethods<'a, S>

source

pub fn account_permission_groups( &'a self ) -> AccountPermissionGroupMethods<'a, S>

source

pub fn account_permissions(&'a self) -> AccountPermissionMethods<'a, S>

source

pub fn account_user_profiles(&'a self) -> AccountUserProfileMethods<'a, S>

source

pub fn accounts(&'a self) -> AccountMethods<'a, S>

source

pub fn ads(&'a self) -> AdMethods<'a, S>

source

pub fn advertiser_groups(&'a self) -> AdvertiserGroupMethods<'a, S>

source

pub fn advertiser_landing_pages(&'a self) -> AdvertiserLandingPageMethods<'a, S>

source

pub fn advertisers(&'a self) -> AdvertiserMethods<'a, S>

source

pub fn browsers(&'a self) -> BrowserMethods<'a, S>

source

pub fn campaign_creative_associations( &'a self ) -> CampaignCreativeAssociationMethods<'a, S>

source

pub fn campaigns(&'a self) -> CampaignMethods<'a, S>

source

pub fn change_logs(&'a self) -> ChangeLogMethods<'a, S>

source

pub fn cities(&'a self) -> CityMethods<'a, S>

source

pub fn connection_types(&'a self) -> ConnectionTypeMethods<'a, S>

source

pub fn content_categories(&'a self) -> ContentCategoryMethods<'a, S>

source

pub fn conversions(&'a self) -> ConversionMethods<'a, S>

source

pub fn countries(&'a self) -> CountryMethods<'a, S>

source

pub fn creative_assets(&'a self) -> CreativeAssetMethods<'a, S>

source

pub fn creative_field_values(&'a self) -> CreativeFieldValueMethods<'a, S>

source

pub fn creative_fields(&'a self) -> CreativeFieldMethods<'a, S>

source

pub fn creative_groups(&'a self) -> CreativeGroupMethods<'a, S>

source

pub fn creatives(&'a self) -> CreativeMethods<'a, S>

source

pub fn dimension_values(&'a self) -> DimensionValueMethods<'a, S>

source

pub fn directory_sites(&'a self) -> DirectorySiteMethods<'a, S>

source

pub fn dynamic_targeting_keys(&'a self) -> DynamicTargetingKeyMethods<'a, S>

source

pub fn event_tags(&'a self) -> EventTagMethods<'a, S>

source

pub fn files(&'a self) -> FileMethods<'a, S>

source

pub fn floodlight_activities(&'a self) -> FloodlightActivityMethods<'a, S>

source

pub fn floodlight_activity_groups( &'a self ) -> FloodlightActivityGroupMethods<'a, S>

source

pub fn floodlight_configurations( &'a self ) -> FloodlightConfigurationMethods<'a, S>

source

pub fn inventory_items(&'a self) -> InventoryItemMethods<'a, S>

source

pub fn languages(&'a self) -> LanguageMethods<'a, S>

source

pub fn metros(&'a self) -> MetroMethods<'a, S>

source

pub fn mobile_apps(&'a self) -> MobileAppMethods<'a, S>

source

pub fn mobile_carriers(&'a self) -> MobileCarrierMethods<'a, S>

source

pub fn operating_system_versions( &'a self ) -> OperatingSystemVersionMethods<'a, S>

source

pub fn operating_systems(&'a self) -> OperatingSystemMethods<'a, S>

source

pub fn order_documents(&'a self) -> OrderDocumentMethods<'a, S>

source

pub fn orders(&'a self) -> OrderMethods<'a, S>

source

pub fn placement_groups(&'a self) -> PlacementGroupMethods<'a, S>

source

pub fn placement_strategies(&'a self) -> PlacementStrategyMethods<'a, S>

source

pub fn placements(&'a self) -> PlacementMethods<'a, S>

source

pub fn platform_types(&'a self) -> PlatformTypeMethods<'a, S>

source

pub fn postal_codes(&'a self) -> PostalCodeMethods<'a, S>

source

pub fn projects(&'a self) -> ProjectMethods<'a, S>

source

pub fn regions(&'a self) -> RegionMethods<'a, S>

source

pub fn remarketing_list_shares(&'a self) -> RemarketingListShareMethods<'a, S>

source

pub fn remarketing_lists(&'a self) -> RemarketingListMethods<'a, S>

source

pub fn reports(&'a self) -> ReportMethods<'a, S>

source

pub fn sites(&'a self) -> SiteMethods<'a, S>

source

pub fn sizes(&'a self) -> SizeMethods<'a, S>

source

pub fn subaccounts(&'a self) -> SubaccountMethods<'a, S>

source

pub fn targetable_remarketing_lists( &'a self ) -> TargetableRemarketingListMethods<'a, S>

source

pub fn targeting_templates(&'a self) -> TargetingTemplateMethods<'a, S>

source

pub fn user_profiles(&'a self) -> UserProfileMethods<'a, S>

source

pub fn user_role_permission_groups( &'a self ) -> UserRolePermissionGroupMethods<'a, S>

source

pub fn user_role_permissions(&'a self) -> UserRolePermissionMethods<'a, S>

source

pub fn user_roles(&'a self) -> UserRoleMethods<'a, S>

source

pub fn video_formats(&'a self) -> VideoFormatMethods<'a, S>

source

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

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

Returns the previously set user-agent.

source

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

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

Returns the previously set base url.

source

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

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

Returns the previously set root url.

Trait Implementations§

source§

impl<S: Clone> Clone for Dfareporting<S>

source§

fn clone(&self) -> Dfareporting<S>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, S> Hub for Dfareporting<S>

Auto Trait Implementations§

§

impl<S> !RefUnwindSafe for Dfareporting<S>

§

impl<S> Send for Dfareporting<S>
where S: Send,

§

impl<S> Sync for Dfareporting<S>
where S: Sync,

§

impl<S> Unpin for Dfareporting<S>
where S: Unpin,

§

impl<S> !UnwindSafe for Dfareporting<S>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more