[][src]Struct google_content2::DatafeedTarget

pub struct DatafeedTarget {
    pub country: Option<String>,
    pub excluded_destinations: Option<Vec<String>>,
    pub language: Option<String>,
    pub included_destinations: Option<Vec<String>>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

country: Option<String>

The country where the items in the feed will be included in the search index, represented as a CLDR territory code.

excluded_destinations: Option<Vec<String>>

The list of destinations to exclude for this target (corresponds to unchecked check boxes in Merchant Center).

language: Option<String>

The two-letter ISO 639-1 language of the items in the feed. Must be a valid language for targets[].country.

included_destinations: Option<Vec<String>>

The list of destinations to include for this target (corresponds to checked check boxes in Merchant Center). Default destinations are always included unless provided in excludedDestinations.

List of supported destinations (if available to the account):

  • DisplayAds
  • Shopping
  • ShoppingActions
  • SurfacesAcrossGoogle

Trait Implementations

impl Clone for DatafeedTarget[src]

impl Debug for DatafeedTarget[src]

impl Default for DatafeedTarget[src]

impl<'de> Deserialize<'de> for DatafeedTarget[src]

impl Part for DatafeedTarget[src]

impl Serialize for DatafeedTarget[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any