pub struct ProductMethods<'a, C>where
C: 'a,{ /* private fields */ }
Expand description
A builder providing access to all methods supported on product resources.
It is not used directly, but through the ShoppingContent
hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_content2 as content2;
use content2::{ShoppingContent, FieldMask, hyper_rustls, hyper_util, yup_oauth2};
let secret: yup_oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
secret,
yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).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_http1()
.build()
);
let mut hub = ShoppingContent::new(client, auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `custombatch(...)`, `delete(...)`, `get(...)`, `insert(...)` and `list(...)`
// to build up your call.
let rb = hub.products();
Implementations§
Source§impl<'a, C> ProductMethods<'a, C>
impl<'a, C> ProductMethods<'a, C>
Sourcepub fn custombatch(
&self,
request: ProductsCustomBatchRequest,
) -> ProductCustombatchCall<'a, C>
pub fn custombatch( &self, request: ProductsCustomBatchRequest, ) -> ProductCustombatchCall<'a, C>
Create a builder to help you perform the following task:
Retrieves, inserts, and deletes multiple products in a single request.
§Arguments
request
- No description provided.
Sourcepub fn delete(
&self,
merchant_id: u64,
product_id: &str,
) -> ProductDeleteCall<'a, C>
pub fn delete( &self, merchant_id: u64, product_id: &str, ) -> ProductDeleteCall<'a, C>
Create a builder to help you perform the following task:
Deletes a product from your Merchant Center account.
§Arguments
merchantId
- The ID of the account that contains the product. This account cannot be a multi-client account.productId
- The REST ID of the product.
Sourcepub fn get(&self, merchant_id: u64, product_id: &str) -> ProductGetCall<'a, C>
pub fn get(&self, merchant_id: u64, product_id: &str) -> ProductGetCall<'a, C>
Create a builder to help you perform the following task:
Retrieves a product from your Merchant Center account.
§Arguments
merchantId
- The ID of the account that contains the product. This account cannot be a multi-client account.productId
- The REST ID of the product.
Sourcepub fn insert(
&self,
request: Product,
merchant_id: u64,
) -> ProductInsertCall<'a, C>
pub fn insert( &self, request: Product, merchant_id: u64, ) -> ProductInsertCall<'a, C>
Create a builder to help you perform the following task:
Uploads a product to your Merchant Center account. If an item with the same channel, contentLanguage, offerId, and targetCountry already exists, this method updates that entry.
§Arguments
request
- No description provided.merchantId
- The ID of the account that contains the product. This account cannot be a multi-client account.
Sourcepub fn list(&self, merchant_id: u64) -> ProductListCall<'a, C>
pub fn list(&self, merchant_id: u64) -> ProductListCall<'a, C>
Create a builder to help you perform the following task:
Lists the products in your Merchant Center account. The response might contain fewer items than specified by maxResults. Rely on nextPageToken to determine if there are more items to be requested.
§Arguments
merchantId
- The ID of the account that contains the products. This account cannot be a multi-client account.
Trait Implementations§
impl<'a, C> MethodsBuilder for ProductMethods<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for ProductMethods<'a, C>
impl<'a, C> !RefUnwindSafe for ProductMethods<'a, C>
impl<'a, C> Send for ProductMethods<'a, C>where
C: Sync,
impl<'a, C> Sync for ProductMethods<'a, C>where
C: Sync,
impl<'a, C> Unpin for ProductMethods<'a, C>
impl<'a, C> !UnwindSafe for ProductMethods<'a, 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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more