Enum google_api_proto::google::ads::googleads::v16::enums::local_placeholder_field_enum::LocalPlaceholderField
source · #[repr(i32)]pub enum LocalPlaceholderField {
Show 21 variants
Unspecified = 0,
Unknown = 1,
DealId = 2,
DealName = 3,
Subtitle = 4,
Description = 5,
Price = 6,
FormattedPrice = 7,
SalePrice = 8,
FormattedSalePrice = 9,
ImageUrl = 10,
Address = 11,
Category = 12,
ContextualKeywords = 13,
FinalUrls = 14,
FinalMobileUrls = 15,
TrackingUrl = 16,
AndroidAppLink = 17,
SimilarDealIds = 18,
IosAppLink = 19,
IosAppStoreId = 20,
}
Expand description
Possible values for Local placeholder fields.
Variants§
Unspecified = 0
Not specified.
Unknown = 1
Used for return value only. Represents value unknown in this version.
DealId = 2
Data Type: STRING. Required. Unique ID.
DealName = 3
Data Type: STRING. Required. Main headline with local deal title to be shown in dynamic ad.
Subtitle = 4
Data Type: STRING. Local deal subtitle to be shown in dynamic ad.
Description = 5
Data Type: STRING. Description of local deal to be shown in dynamic ad.
Price = 6
Data Type: STRING. Price to be shown in the ad. Highly recommended for dynamic ads. Example: “100.00 USD”
FormattedPrice = 7
Data Type: STRING. Formatted price to be shown in the ad. Example: “Starting at $100.00 USD”, “$80 - $100”
SalePrice = 8
Data Type: STRING. Sale price to be shown in the ad. Example: “80.00 USD”
FormattedSalePrice = 9
Data Type: STRING. Formatted sale price to be shown in the ad. Example: “On sale for $80.00”, “$60 - $80”
ImageUrl = 10
Data Type: URL. Image to be displayed in the ad.
Address = 11
Data Type: STRING. Complete property address, including postal code.
Category = 12
Data Type: STRING. Category of local deal used to group like items together for recommendation engine.
ContextualKeywords = 13
Data Type: STRING_LIST. Keywords used for product retrieval.
FinalUrls = 14
Data Type: URL_LIST. Required. Final URLs to be used in ad when using Upgraded URLs; the more specific the better (for example, the individual URL of a specific local deal and its location).
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.
AndroidAppLink = 17
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.
SimilarDealIds = 18
Data Type: STRING_LIST. List of recommended local deal IDs to show together with this item.
IosAppLink = 19
Data Type: STRING. iOS app link.
IosAppStoreId = 20
Data Type: INT64. iOS app store ID.
Implementations§
source§impl LocalPlaceholderField
impl LocalPlaceholderField
sourcepub fn is_valid(value: i32) -> bool
pub fn is_valid(value: i32) -> bool
Returns true
if value
is a variant of LocalPlaceholderField
.
sourcepub fn from_i32(value: i32) -> Option<LocalPlaceholderField>
👎Deprecated: Use the TryFrom<i32> implementation instead
pub fn from_i32(value: i32) -> Option<LocalPlaceholderField>
Converts an i32
to a LocalPlaceholderField
, or None
if value
is not a valid variant.
source§impl LocalPlaceholderField
impl LocalPlaceholderField
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 LocalPlaceholderField
impl Clone for LocalPlaceholderField
source§fn clone(&self) -> LocalPlaceholderField
fn clone(&self) -> LocalPlaceholderField
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LocalPlaceholderField
impl Debug for LocalPlaceholderField
source§impl Default for LocalPlaceholderField
impl Default for LocalPlaceholderField
source§fn default() -> LocalPlaceholderField
fn default() -> LocalPlaceholderField
source§impl From<LocalPlaceholderField> for i32
impl From<LocalPlaceholderField> for i32
source§fn from(value: LocalPlaceholderField) -> i32
fn from(value: LocalPlaceholderField) -> i32
source§impl Hash for LocalPlaceholderField
impl Hash for LocalPlaceholderField
source§impl Ord for LocalPlaceholderField
impl Ord for LocalPlaceholderField
source§fn cmp(&self, other: &LocalPlaceholderField) -> Ordering
fn cmp(&self, other: &LocalPlaceholderField) -> 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 LocalPlaceholderField
impl PartialEq for LocalPlaceholderField
source§fn eq(&self, other: &LocalPlaceholderField) -> bool
fn eq(&self, other: &LocalPlaceholderField) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for LocalPlaceholderField
impl PartialOrd for LocalPlaceholderField
source§fn partial_cmp(&self, other: &LocalPlaceholderField) -> Option<Ordering>
fn partial_cmp(&self, other: &LocalPlaceholderField) -> 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 LocalPlaceholderField
impl TryFrom<i32> for LocalPlaceholderField
§type Error = UnknownEnumValue
type Error = UnknownEnumValue
source§fn try_from(value: i32) -> Result<LocalPlaceholderField, UnknownEnumValue>
fn try_from(value: i32) -> Result<LocalPlaceholderField, UnknownEnumValue>
impl Copy for LocalPlaceholderField
impl Eq for LocalPlaceholderField
impl StructuralPartialEq for LocalPlaceholderField
Auto Trait Implementations§
impl Freeze for LocalPlaceholderField
impl RefUnwindSafe for LocalPlaceholderField
impl Send for LocalPlaceholderField
impl Sync for LocalPlaceholderField
impl Unpin for LocalPlaceholderField
impl UnwindSafe for LocalPlaceholderField
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