pub struct Dfareporting<C> {
pub client: Client<C>,
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_dfareporting3 as dfareporting3;
use dfareporting3::{Result, Error};
use dfareporting3::{Dfareporting, FieldMask, hyper_rustls, hyper_util, yup_oauth2};
// Get an ApplicationSecret instance by some means. It contains the `client_id` and
// `client_secret`, among other things.
let secret: yup_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 connector = hyper_rustls::HttpsConnectorBuilder::new()
.with_native_roots()
.unwrap()
.https_only()
.enable_http2()
.build();
let executor = hyper_util::rt::TokioExecutor::new();
let auth = yup_oauth2::InstalledFlowAuthenticator::with_client(
secret,
yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
yup_oauth2::client::CustomHyperClientBuilder::from(
hyper_util::client::legacy::Client::builder(executor).build(connector),
),
).build().await.unwrap();
let client = hyper_util::client::legacy::Client::builder(
hyper_util::rt::TokioExecutor::new()
)
.build(
hyper_rustls::HttpsConnectorBuilder::new()
.with_native_roots()
.unwrap()
.https_or_http()
.enable_http2()
.build()
);
let mut hub = Dfareporting::new(client, 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<C>§auth: Box<dyn GetToken>Implementations§
Source§impl<'a, C> Dfareporting<C>
impl<'a, C> Dfareporting<C>
pub fn new<A: 'static + GetToken>(client: Client<C>, auth: A) -> Dfareporting<C>
pub fn account_active_ad_summaries( &'a self, ) -> AccountActiveAdSummaryMethods<'a, C>
pub fn account_permission_groups( &'a self, ) -> AccountPermissionGroupMethods<'a, C>
pub fn account_permissions(&'a self) -> AccountPermissionMethods<'a, C>
pub fn account_user_profiles(&'a self) -> AccountUserProfileMethods<'a, C>
pub fn accounts(&'a self) -> AccountMethods<'a, C>
pub fn ads(&'a self) -> AdMethods<'a, C>
pub fn advertiser_groups(&'a self) -> AdvertiserGroupMethods<'a, C>
pub fn advertiser_landing_pages(&'a self) -> AdvertiserLandingPageMethods<'a, C>
pub fn advertisers(&'a self) -> AdvertiserMethods<'a, C>
pub fn browsers(&'a self) -> BrowserMethods<'a, C>
pub fn campaign_creative_associations( &'a self, ) -> CampaignCreativeAssociationMethods<'a, C>
pub fn campaigns(&'a self) -> CampaignMethods<'a, C>
pub fn change_logs(&'a self) -> ChangeLogMethods<'a, C>
pub fn cities(&'a self) -> CityMethods<'a, C>
pub fn connection_types(&'a self) -> ConnectionTypeMethods<'a, C>
pub fn content_categories(&'a self) -> ContentCategoryMethods<'a, C>
pub fn conversions(&'a self) -> ConversionMethods<'a, C>
pub fn countries(&'a self) -> CountryMethods<'a, C>
pub fn creative_assets(&'a self) -> CreativeAssetMethods<'a, C>
pub fn creative_field_values(&'a self) -> CreativeFieldValueMethods<'a, C>
pub fn creative_fields(&'a self) -> CreativeFieldMethods<'a, C>
pub fn creative_groups(&'a self) -> CreativeGroupMethods<'a, C>
pub fn creatives(&'a self) -> CreativeMethods<'a, C>
pub fn dimension_values(&'a self) -> DimensionValueMethods<'a, C>
pub fn directory_site_contacts(&'a self) -> DirectorySiteContactMethods<'a, C>
pub fn directory_sites(&'a self) -> DirectorySiteMethods<'a, C>
pub fn dynamic_targeting_keys(&'a self) -> DynamicTargetingKeyMethods<'a, C>
pub fn files(&'a self) -> FileMethods<'a, C>
pub fn floodlight_activities(&'a self) -> FloodlightActivityMethods<'a, C>
pub fn floodlight_activity_groups( &'a self, ) -> FloodlightActivityGroupMethods<'a, C>
pub fn floodlight_configurations( &'a self, ) -> FloodlightConfigurationMethods<'a, C>
pub fn inventory_items(&'a self) -> InventoryItemMethods<'a, C>
pub fn languages(&'a self) -> LanguageMethods<'a, C>
pub fn metros(&'a self) -> MetroMethods<'a, C>
pub fn mobile_carriers(&'a self) -> MobileCarrierMethods<'a, C>
pub fn operating_system_versions( &'a self, ) -> OperatingSystemVersionMethods<'a, C>
pub fn operating_systems(&'a self) -> OperatingSystemMethods<'a, C>
pub fn order_documents(&'a self) -> OrderDocumentMethods<'a, C>
pub fn orders(&'a self) -> OrderMethods<'a, C>
pub fn placement_groups(&'a self) -> PlacementGroupMethods<'a, C>
pub fn placement_strategies(&'a self) -> PlacementStrategyMethods<'a, C>
pub fn placements(&'a self) -> PlacementMethods<'a, C>
pub fn platform_types(&'a self) -> PlatformTypeMethods<'a, C>
pub fn postal_codes(&'a self) -> PostalCodeMethods<'a, C>
pub fn projects(&'a self) -> ProjectMethods<'a, C>
pub fn regions(&'a self) -> RegionMethods<'a, C>
pub fn remarketing_lists(&'a self) -> RemarketingListMethods<'a, C>
pub fn reports(&'a self) -> ReportMethods<'a, C>
pub fn sites(&'a self) -> SiteMethods<'a, C>
pub fn sizes(&'a self) -> SizeMethods<'a, C>
pub fn subaccounts(&'a self) -> SubaccountMethods<'a, C>
pub fn targetable_remarketing_lists( &'a self, ) -> TargetableRemarketingListMethods<'a, C>
pub fn targeting_templates(&'a self) -> TargetingTemplateMethods<'a, C>
pub fn user_profiles(&'a self) -> UserProfileMethods<'a, C>
pub fn user_role_permission_groups( &'a self, ) -> UserRolePermissionGroupMethods<'a, C>
pub fn user_role_permissions(&'a self) -> UserRolePermissionMethods<'a, C>
pub fn user_roles(&'a self) -> UserRoleMethods<'a, C>
pub fn video_formats(&'a self) -> VideoFormatMethods<'a, C>
Sourcepub fn user_agent(&mut self, agent_name: String) -> String
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/7.0.0.
Returns the previously set user-agent.
Trait Implementations§
Source§impl<C: Clone> Clone for Dfareporting<C>
impl<C: Clone> Clone for Dfareporting<C>
Source§fn clone(&self) -> Dfareporting<C>
fn clone(&self) -> Dfareporting<C>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<C> Hub for Dfareporting<C>
Auto Trait Implementations§
impl<C> Freeze for Dfareporting<C>where
C: Freeze,
impl<C> !RefUnwindSafe for Dfareporting<C>
impl<C> Send for Dfareporting<C>where
C: Send,
impl<C> Sync for Dfareporting<C>where
C: Sync,
impl<C> Unpin for Dfareporting<C>where
C: Unpin,
impl<C> !UnwindSafe for Dfareporting<C>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more