Struct google_adsensehost4d1::api::CustomchannelMethods [−][src]
A builder providing access to all methods supported on customchannel resources.
It is not used directly, but through the AdSenseHost hub.
Example
Instantiate a resource builder
extern crate hyper; extern crate hyper_rustls; extern crate yup_oauth2 as oauth2; extern crate google_adsensehost4d1 as adsensehost4d1; use std::default::Default; use oauth2; use adsensehost4d1::AdSenseHost; let secret: oauth2::ApplicationSecret = Default::default(); let auth = yup_oauth2::InstalledFlowAuthenticator::builder( secret, yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect, ).build().await.unwrap(); let mut hub = AdSenseHost::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), auth); // Usually you wouldn't bind this to a variable, but keep calling *CallBuilders* // like `delete(...)`, `get(...)`, `insert(...)`, `list(...)`, `patch(...)` and `update(...)` // to build up your call. let rb = hub.customchannels();
Implementations
impl<'a, C> CustomchannelMethods<'a, C>[src]
pub fn delete(
&self,
ad_client_id: &str,
custom_channel_id: &str
) -> CustomchannelDeleteCall<'a, C>[src]
&self,
ad_client_id: &str,
custom_channel_id: &str
) -> CustomchannelDeleteCall<'a, C>
Create a builder to help you perform the following task:
Delete a specific custom channel from the host AdSense account.
Arguments
adClientId- Ad client from which to delete the custom channel.customChannelId- Custom channel to delete.
pub fn get(
&self,
ad_client_id: &str,
custom_channel_id: &str
) -> CustomchannelGetCall<'a, C>[src]
&self,
ad_client_id: &str,
custom_channel_id: &str
) -> CustomchannelGetCall<'a, C>
Create a builder to help you perform the following task:
Get a specific custom channel from the host AdSense account.
Arguments
adClientId- Ad client from which to get the custom channel.customChannelId- Custom channel to get.
pub fn insert(
&self,
request: CustomChannel,
ad_client_id: &str
) -> CustomchannelInsertCall<'a, C>[src]
&self,
request: CustomChannel,
ad_client_id: &str
) -> CustomchannelInsertCall<'a, C>
Create a builder to help you perform the following task:
Add a new custom channel to the host AdSense account.
Arguments
request- No description provided.adClientId- Ad client to which the new custom channel will be added.
pub fn list(&self, ad_client_id: &str) -> CustomchannelListCall<'a, C>[src]
Create a builder to help you perform the following task:
List all host custom channels in this AdSense account.
Arguments
adClientId- Ad client for which to list custom channels.
pub fn patch(
&self,
request: CustomChannel,
ad_client_id: &str,
custom_channel_id: &str
) -> CustomchannelPatchCall<'a, C>[src]
&self,
request: CustomChannel,
ad_client_id: &str,
custom_channel_id: &str
) -> CustomchannelPatchCall<'a, C>
Create a builder to help you perform the following task:
Update a custom channel in the host AdSense account. This method supports patch semantics.
Arguments
request- No description provided.adClientId- Ad client in which the custom channel will be updated.customChannelId- Custom channel to get.
pub fn update(
&self,
request: CustomChannel,
ad_client_id: &str
) -> CustomchannelUpdateCall<'a, C>[src]
&self,
request: CustomChannel,
ad_client_id: &str
) -> CustomchannelUpdateCall<'a, C>
Create a builder to help you perform the following task:
Update a custom channel in the host AdSense account.
Arguments
request- No description provided.adClientId- Ad client in which the custom channel will be updated.
Trait Implementations
impl<'a, C> MethodsBuilder for CustomchannelMethods<'a, C>[src]
Auto Trait Implementations
impl<'a, C> !RefUnwindSafe for CustomchannelMethods<'a, C>[src]
impl<'a, C> !Send for CustomchannelMethods<'a, C>[src]
impl<'a, C> !Sync for CustomchannelMethods<'a, C>[src]
impl<'a, C> Unpin for CustomchannelMethods<'a, C>[src]
impl<'a, C> !UnwindSafe for CustomchannelMethods<'a, C>[src]
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>,