Enum google_api_proto::google::ads::googleads::v15::enums::sitelink_placeholder_field_enum::SitelinkPlaceholderField
source · #[repr(i32)]pub enum SitelinkPlaceholderField {
Unspecified = 0,
Unknown = 1,
Text = 2,
Line1 = 3,
Line2 = 4,
FinalUrls = 5,
FinalMobileUrls = 6,
TrackingUrl = 7,
FinalUrlSuffix = 8,
}
Expand description
Possible values for Sitelink placeholder fields.
Variants§
Unspecified = 0
Not specified.
Unknown = 1
Used for return value only. Represents value unknown in this version.
Text = 2
Data Type: STRING. The link text for your sitelink.
Line1 = 3
Data Type: STRING. First line of the sitelink description.
Line2 = 4
Data Type: STRING. Second line of the sitelink description.
FinalUrls = 5
Data Type: URL_LIST. Final URLs for the sitelink when using Upgraded URLs.
FinalMobileUrls = 6
Data Type: URL_LIST. Final Mobile URLs for the sitelink when using Upgraded URLs.
TrackingUrl = 7
Data Type: URL. Tracking template for the sitelink when using Upgraded URLs.
FinalUrlSuffix = 8
Data Type: STRING. Final URL suffix for sitelink when using parallel tracking.
Implementations§
source§impl SitelinkPlaceholderField
impl SitelinkPlaceholderField
sourcepub fn is_valid(value: i32) -> bool
pub fn is_valid(value: i32) -> bool
Returns true
if value
is a variant of SitelinkPlaceholderField
.
sourcepub fn from_i32(value: i32) -> Option<SitelinkPlaceholderField>
👎Deprecated: Use the TryFrom<i32> implementation instead
pub fn from_i32(value: i32) -> Option<SitelinkPlaceholderField>
Converts an i32
to a SitelinkPlaceholderField
, or None
if value
is not a valid variant.
source§impl SitelinkPlaceholderField
impl SitelinkPlaceholderField
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 SitelinkPlaceholderField
impl Clone for SitelinkPlaceholderField
source§fn clone(&self) -> SitelinkPlaceholderField
fn clone(&self) -> SitelinkPlaceholderField
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SitelinkPlaceholderField
impl Debug for SitelinkPlaceholderField
source§impl Default for SitelinkPlaceholderField
impl Default for SitelinkPlaceholderField
source§fn default() -> SitelinkPlaceholderField
fn default() -> SitelinkPlaceholderField
source§impl From<SitelinkPlaceholderField> for i32
impl From<SitelinkPlaceholderField> for i32
source§fn from(value: SitelinkPlaceholderField) -> i32
fn from(value: SitelinkPlaceholderField) -> i32
source§impl Hash for SitelinkPlaceholderField
impl Hash for SitelinkPlaceholderField
source§impl Ord for SitelinkPlaceholderField
impl Ord for SitelinkPlaceholderField
source§fn cmp(&self, other: &SitelinkPlaceholderField) -> Ordering
fn cmp(&self, other: &SitelinkPlaceholderField) -> 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 SitelinkPlaceholderField
impl PartialEq for SitelinkPlaceholderField
source§fn eq(&self, other: &SitelinkPlaceholderField) -> bool
fn eq(&self, other: &SitelinkPlaceholderField) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for SitelinkPlaceholderField
impl PartialOrd for SitelinkPlaceholderField
source§fn partial_cmp(&self, other: &SitelinkPlaceholderField) -> Option<Ordering>
fn partial_cmp(&self, other: &SitelinkPlaceholderField) -> 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 SitelinkPlaceholderField
impl TryFrom<i32> for SitelinkPlaceholderField
§type Error = UnknownEnumValue
type Error = UnknownEnumValue
source§fn try_from(value: i32) -> Result<SitelinkPlaceholderField, UnknownEnumValue>
fn try_from(value: i32) -> Result<SitelinkPlaceholderField, UnknownEnumValue>
impl Copy for SitelinkPlaceholderField
impl Eq for SitelinkPlaceholderField
impl StructuralPartialEq for SitelinkPlaceholderField
Auto Trait Implementations§
impl Freeze for SitelinkPlaceholderField
impl RefUnwindSafe for SitelinkPlaceholderField
impl Send for SitelinkPlaceholderField
impl Sync for SitelinkPlaceholderField
impl Unpin for SitelinkPlaceholderField
impl UnwindSafe for SitelinkPlaceholderField
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