Enum google_api_proto::google::ads::googleads::v17::enums::custom_placeholder_field_enum::CustomPlaceholderField
source · #[repr(i32)]pub enum CustomPlaceholderField {
Show 22 variants
Unspecified = 0,
Unknown = 1,
Id = 2,
Id2 = 3,
ItemTitle = 4,
ItemSubtitle = 5,
ItemDescription = 6,
ItemAddress = 7,
Price = 8,
FormattedPrice = 9,
SalePrice = 10,
FormattedSalePrice = 11,
ImageUrl = 12,
ItemCategory = 13,
FinalUrls = 14,
FinalMobileUrls = 15,
TrackingUrl = 16,
ContextualKeywords = 17,
AndroidAppLink = 18,
SimilarIds = 19,
IosAppLink = 20,
IosAppStoreId = 21,
}
Expand description
Possible values for Custom placeholder fields.
Variants§
Unspecified = 0
Not specified.
Unknown = 1
Used for return value only. Represents value unknown in this version.
Id = 2
Data Type: STRING. Required. Combination ID and ID2 must be unique per offer.
Id2 = 3
Data Type: STRING. Combination ID and ID2 must be unique per offer.
ItemTitle = 4
Data Type: STRING. Required. Main headline with product name to be shown in dynamic ad.
ItemSubtitle = 5
Data Type: STRING. Optional text to be shown in the image ad.
ItemDescription = 6
Data Type: STRING. Optional description of the product to be shown in the ad.
ItemAddress = 7
Data Type: STRING. Full address of your offer or service, including postal code. This will be used to identify the closest product to the user when there are multiple offers in the feed that are relevant to the user.
Price = 8
Data Type: STRING. Price to be shown in the ad. Example: “100.00 USD”
FormattedPrice = 9
Data Type: STRING. Formatted price to be shown in the ad. Example: “Starting at $100.00 USD”, “$80 - $100”
SalePrice = 10
Data Type: STRING. Sale price to be shown in the ad. Example: “80.00 USD”
FormattedSalePrice = 11
Data Type: STRING. Formatted sale price to be shown in the ad. Example: “On sale for $80.00”, “$60 - $80”
ImageUrl = 12
Data Type: URL. Image to be displayed in the ad. Highly recommended for image ads.
ItemCategory = 13
Data Type: STRING. Used as a recommendation engine signal to serve items in the same category.
FinalUrls = 14
Data Type: URL_LIST. Final URLs for the ad when using Upgraded URLs. User will be redirected to these URLs when they click on an ad, or when they click on a specific product for ads that have multiple products.
FinalMobileUrls = 15
Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded URLs.
TrackingUrl = 16
Data Type: URL. Tracking template for the ad when using Upgraded URLs.
ContextualKeywords = 17
Data Type: STRING_LIST. Keywords used for product retrieval.
AndroidAppLink = 18
Data Type: STRING. Android app link. Must be formatted as: android-app://{package_id}/{scheme}/{host_path}. The components are defined as follows: package_id: app ID as specified in Google Play. scheme: the scheme to pass to the application. Can be HTTP, or a custom scheme. host_path: identifies the specific content within your application.
SimilarIds = 19
Data Type: STRING_LIST. List of recommended IDs to show together with this item.
IosAppLink = 20
Data Type: STRING. iOS app link.
IosAppStoreId = 21
Data Type: INT64. iOS app store ID.
Implementations§
source§impl CustomPlaceholderField
impl CustomPlaceholderField
sourcepub fn is_valid(value: i32) -> bool
pub fn is_valid(value: i32) -> bool
Returns true
if value
is a variant of CustomPlaceholderField
.
sourcepub fn from_i32(value: i32) -> Option<CustomPlaceholderField>
👎Deprecated: Use the TryFrom<i32> implementation instead
pub fn from_i32(value: i32) -> Option<CustomPlaceholderField>
Converts an i32
to a CustomPlaceholderField
, or None
if value
is not a valid variant.
source§impl CustomPlaceholderField
impl CustomPlaceholderField
sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
source§impl Clone for CustomPlaceholderField
impl Clone for CustomPlaceholderField
source§fn clone(&self) -> CustomPlaceholderField
fn clone(&self) -> CustomPlaceholderField
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CustomPlaceholderField
impl Debug for CustomPlaceholderField
source§impl Default for CustomPlaceholderField
impl Default for CustomPlaceholderField
source§fn default() -> CustomPlaceholderField
fn default() -> CustomPlaceholderField
source§impl From<CustomPlaceholderField> for i32
impl From<CustomPlaceholderField> for i32
source§fn from(value: CustomPlaceholderField) -> i32
fn from(value: CustomPlaceholderField) -> i32
source§impl Hash for CustomPlaceholderField
impl Hash for CustomPlaceholderField
source§impl Ord for CustomPlaceholderField
impl Ord for CustomPlaceholderField
source§fn cmp(&self, other: &CustomPlaceholderField) -> Ordering
fn cmp(&self, other: &CustomPlaceholderField) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for CustomPlaceholderField
impl PartialEq for CustomPlaceholderField
source§fn eq(&self, other: &CustomPlaceholderField) -> bool
fn eq(&self, other: &CustomPlaceholderField) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for CustomPlaceholderField
impl PartialOrd for CustomPlaceholderField
source§fn partial_cmp(&self, other: &CustomPlaceholderField) -> Option<Ordering>
fn partial_cmp(&self, other: &CustomPlaceholderField) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl TryFrom<i32> for CustomPlaceholderField
impl TryFrom<i32> for CustomPlaceholderField
§type Error = UnknownEnumValue
type Error = UnknownEnumValue
source§fn try_from(value: i32) -> Result<CustomPlaceholderField, UnknownEnumValue>
fn try_from(value: i32) -> Result<CustomPlaceholderField, UnknownEnumValue>
impl Copy for CustomPlaceholderField
impl Eq for CustomPlaceholderField
impl StructuralPartialEq for CustomPlaceholderField
Auto Trait Implementations§
impl Freeze for CustomPlaceholderField
impl RefUnwindSafe for CustomPlaceholderField
impl Send for CustomPlaceholderField
impl Sync for CustomPlaceholderField
impl Unpin for CustomPlaceholderField
impl UnwindSafe for CustomPlaceholderField
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request