Enum google_api_proto::google::ads::googleads::v15::enums::education_placeholder_field_enum::EducationPlaceholderField
source · #[repr(i32)]pub enum EducationPlaceholderField {
Show 19 variants
Unspecified = 0,
Unknown = 1,
ProgramId = 2,
LocationId = 3,
ProgramName = 4,
AreaOfStudy = 5,
ProgramDescription = 6,
SchoolName = 7,
Address = 8,
ThumbnailImageUrl = 9,
AlternativeThumbnailImageUrl = 10,
FinalUrls = 11,
FinalMobileUrls = 12,
TrackingUrl = 13,
ContextualKeywords = 14,
AndroidAppLink = 15,
SimilarProgramIds = 16,
IosAppLink = 17,
IosAppStoreId = 18,
}
Expand description
Possible values for Education placeholder fields.
Variants§
Unspecified = 0
Not specified.
Unknown = 1
Used for return value only. Represents value unknown in this version.
ProgramId = 2
Data Type: STRING. Required. Combination of PROGRAM ID and LOCATION ID must be unique per offer.
LocationId = 3
Data Type: STRING. Combination of PROGRAM ID and LOCATION ID must be unique per offer.
ProgramName = 4
Data Type: STRING. Required. Main headline with program name to be shown in dynamic ad.
AreaOfStudy = 5
Data Type: STRING. Area of study that can be shown in dynamic ad.
ProgramDescription = 6
Data Type: STRING. Description of program that can be shown in dynamic ad.
SchoolName = 7
Data Type: STRING. Name of school that can be shown in dynamic ad.
Address = 8
Data Type: STRING. Complete school address, including postal code.
ThumbnailImageUrl = 9
Data Type: URL. Image to be displayed in ads.
AlternativeThumbnailImageUrl = 10
Data Type: URL. Alternative hosted file of image to be used in the ad.
FinalUrls = 11
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 program and its location).
FinalMobileUrls = 12
Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded URLs.
TrackingUrl = 13
Data Type: URL. Tracking template for the ad when using Upgraded URLs.
ContextualKeywords = 14
Data Type: STRING_LIST. Keywords used for product retrieval.
AndroidAppLink = 15
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.
SimilarProgramIds = 16
Data Type: STRING_LIST. List of recommended program IDs to show together with this item.
IosAppLink = 17
Data Type: STRING. iOS app link.
IosAppStoreId = 18
Data Type: INT64. iOS app store ID.
Implementations§
source§impl EducationPlaceholderField
impl EducationPlaceholderField
sourcepub fn is_valid(value: i32) -> bool
pub fn is_valid(value: i32) -> bool
Returns true
if value
is a variant of EducationPlaceholderField
.
sourcepub fn from_i32(value: i32) -> Option<EducationPlaceholderField>
👎Deprecated: Use the TryFrom<i32> implementation instead
pub fn from_i32(value: i32) -> Option<EducationPlaceholderField>
Converts an i32
to a EducationPlaceholderField
, or None
if value
is not a valid variant.
source§impl EducationPlaceholderField
impl EducationPlaceholderField
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 EducationPlaceholderField
impl Clone for EducationPlaceholderField
source§fn clone(&self) -> EducationPlaceholderField
fn clone(&self) -> EducationPlaceholderField
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EducationPlaceholderField
impl Debug for EducationPlaceholderField
source§impl Default for EducationPlaceholderField
impl Default for EducationPlaceholderField
source§fn default() -> EducationPlaceholderField
fn default() -> EducationPlaceholderField
source§impl From<EducationPlaceholderField> for i32
impl From<EducationPlaceholderField> for i32
source§fn from(value: EducationPlaceholderField) -> i32
fn from(value: EducationPlaceholderField) -> i32
source§impl Hash for EducationPlaceholderField
impl Hash for EducationPlaceholderField
source§impl Ord for EducationPlaceholderField
impl Ord for EducationPlaceholderField
source§fn cmp(&self, other: &EducationPlaceholderField) -> Ordering
fn cmp(&self, other: &EducationPlaceholderField) -> 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 EducationPlaceholderField
impl PartialEq for EducationPlaceholderField
source§fn eq(&self, other: &EducationPlaceholderField) -> bool
fn eq(&self, other: &EducationPlaceholderField) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for EducationPlaceholderField
impl PartialOrd for EducationPlaceholderField
source§fn partial_cmp(&self, other: &EducationPlaceholderField) -> Option<Ordering>
fn partial_cmp(&self, other: &EducationPlaceholderField) -> 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 EducationPlaceholderField
impl TryFrom<i32> for EducationPlaceholderField
§type Error = UnknownEnumValue
type Error = UnknownEnumValue
source§fn try_from(value: i32) -> Result<EducationPlaceholderField, UnknownEnumValue>
fn try_from(value: i32) -> Result<EducationPlaceholderField, UnknownEnumValue>
impl Copy for EducationPlaceholderField
impl Eq for EducationPlaceholderField
impl StructuralPartialEq for EducationPlaceholderField
Auto Trait Implementations§
impl Freeze for EducationPlaceholderField
impl RefUnwindSafe for EducationPlaceholderField
impl Send for EducationPlaceholderField
impl Sync for EducationPlaceholderField
impl Unpin for EducationPlaceholderField
impl UnwindSafe for EducationPlaceholderField
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