Struct google_adsense1d4::CustomchannelMethods [] [src]

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate yup_oauth2 as oauth2;
extern crate google_adsense1d4 as adsense1d4;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use adsense1d4::AdSense;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::new(),
                              <MemoryStorage as Default>::default(), None);
let mut hub = AdSense::new(hyper::Client::new(), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `adunits_list(...)`, `get(...)` and `list(...)`
// to build up your call.
let rb = hub.customchannels();

Methods

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

Create a builder to help you perform the following task:

Get the specified custom channel from the specified ad client.

Arguments

  • adClientId - Ad client which contains the custom channel.
  • customChannelId - Custom channel to retrieve.

Create a builder to help you perform the following task:

List all custom channels in the specified ad client for this AdSense account.

Arguments

  • adClientId - Ad client for which to list custom channels.

Create a builder to help you perform the following task:

List all ad units in the specified custom channel.

Arguments

  • adClientId - Ad client which contains the custom channel.
  • customChannelId - Custom channel for which to list ad units.

Trait Implementations

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