Struct google_displayvideo1::api::DisplayVideo [−][src]
Central instance to access all DisplayVideo related resource activities
Examples
Instantiate a new hub
extern crate hyper; extern crate hyper_rustls; extern crate yup_oauth2 as oauth2; extern crate google_displayvideo1 as displayvideo1; use displayvideo1::{Result, Error}; use std::default::Default; use oauth2; use displayvideo1::DisplayVideo; // 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 = DisplayVideo::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.advertisers().campaigns_targeting_types_assigned_targeting_options_list("advertiserId", "campaignId", "targetingType") .page_token("dolor") .page_size(-17) .order_by("ipsum") .filter("invidunt") .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> DisplayVideo
[src]
pub fn new(
client: Client<HttpsConnector<HttpConnector>, Body>,
authenticator: Authenticator<HttpsConnector<HttpConnector>>
) -> DisplayVideo
[src]
client: Client<HttpsConnector<HttpConnector>, Body>,
authenticator: Authenticator<HttpsConnector<HttpConnector>>
) -> DisplayVideo
pub fn advertisers(&'a self) -> AdvertiserMethods<'a>
[src]
pub fn combined_audiences(&'a self) -> CombinedAudienceMethods<'a>
[src]
pub fn custom_bidding_algorithms(&'a self) -> CustomBiddingAlgorithmMethods<'a>
[src]
pub fn custom_lists(&'a self) -> CustomListMethods<'a>
[src]
pub fn first_and_third_party_audiences(
&'a self
) -> FirstAndThirdPartyAudienceMethods<'a>
[src]
&'a self
) -> FirstAndThirdPartyAudienceMethods<'a>
pub fn floodlight_groups(&'a self) -> FloodlightGroupMethods<'a>
[src]
pub fn google_audiences(&'a self) -> GoogleAudienceMethods<'a>
[src]
pub fn inventory_source_groups(&'a self) -> InventorySourceGroupMethods<'a>
[src]
pub fn inventory_sources(&'a self) -> InventorySourceMethods<'a>
[src]
pub fn media(&'a self) -> MediaMethods<'a>
[src]
pub fn partners(&'a self) -> PartnerMethods<'a>
[src]
pub fn sdfdownloadtasks(&'a self) -> SdfdownloadtaskMethods<'a>
[src]
pub fn targeting_types(&'a self) -> TargetingTypeMethods<'a>
[src]
pub fn users(&'a self) -> UserMethods<'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://displayvideo.googleapis.com/
.
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://displayvideo.googleapis.com/
.
Returns the previously set root url.
Trait Implementations
impl<'a> Hub for DisplayVideo
[src]
Auto Trait Implementations
impl !RefUnwindSafe for DisplayVideo
impl Send for DisplayVideo
impl Sync for DisplayVideo
impl Unpin for DisplayVideo
impl !UnwindSafe for DisplayVideo
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>,