Struct google_api_proto::google::ads::searchads360::v0::resources::SearchAds360Field
source · pub struct SearchAds360Field {Show 14 fields
pub resource_name: String,
pub name: Option<String>,
pub category: i32,
pub selectable: Option<bool>,
pub filterable: Option<bool>,
pub sortable: Option<bool>,
pub selectable_with: Vec<String>,
pub attribute_resources: Vec<String>,
pub metrics: Vec<String>,
pub segments: Vec<String>,
pub enum_values: Vec<String>,
pub data_type: i32,
pub type_url: Option<String>,
pub is_repeated: Option<bool>,
}
Expand description
A field or resource (artifact) used by SearchAds360Service.
Fields§
§resource_name: String
Output only. The resource name of the artifact. Artifact resource names have the form:
SearchAds360Fields/{name}
name: Option<String>
Output only. The name of the artifact.
category: i32
Output only. The category of the artifact.
selectable: Option<bool>
Output only. Whether the artifact can be used in a SELECT clause in search queries.
filterable: Option<bool>
Output only. Whether the artifact can be used in a WHERE clause in search queries.
sortable: Option<bool>
Output only. Whether the artifact can be used in a ORDER BY clause in search queries.
selectable_with: Vec<String>
Output only. The names of all resources, segments, and metrics that are selectable with the described artifact.
attribute_resources: Vec<String>
Output only. The names of all resources that are selectable with the described artifact. Fields from these resources do not segment metrics when included in search queries.
This field is only set for artifacts whose category is RESOURCE.
metrics: Vec<String>
Output only. This field lists the names of all metrics that are selectable with the described artifact when it is used in the FROM clause. It is only set for artifacts whose category is RESOURCE.
segments: Vec<String>
Output only. This field lists the names of all artifacts, whether a segment or another resource, that segment metrics when included in search queries and when the described artifact is used in the FROM clause. It is only set for artifacts whose category is RESOURCE.
enum_values: Vec<String>
Output only. Values the artifact can assume if it is a field of type ENUM.
This field is only set for artifacts of category SEGMENT or ATTRIBUTE.
data_type: i32
Output only. This field determines the operators that can be used with the artifact in WHERE clauses.
type_url: Option<String>
Output only. The URL of proto describing the artifact’s data type.
is_repeated: Option<bool>
Output only. Whether the field artifact is repeated.
Implementations§
source§impl SearchAds360Field
impl SearchAds360Field
sourcepub fn category(&self) -> SearchAds360FieldCategory
pub fn category(&self) -> SearchAds360FieldCategory
Returns the enum value of category
, or the default if the field is set to an invalid enum value.
sourcepub fn set_category(&mut self, value: SearchAds360FieldCategory)
pub fn set_category(&mut self, value: SearchAds360FieldCategory)
Sets category
to the provided enum value.
sourcepub fn data_type(&self) -> SearchAds360FieldDataType
pub fn data_type(&self) -> SearchAds360FieldDataType
Returns the enum value of data_type
, or the default if the field is set to an invalid enum value.
sourcepub fn set_data_type(&mut self, value: SearchAds360FieldDataType)
pub fn set_data_type(&mut self, value: SearchAds360FieldDataType)
Sets data_type
to the provided enum value.
sourcepub fn selectable(&self) -> bool
pub fn selectable(&self) -> bool
Returns the value of selectable
, or the default value if selectable
is unset.
sourcepub fn filterable(&self) -> bool
pub fn filterable(&self) -> bool
Returns the value of filterable
, or the default value if filterable
is unset.
sourcepub fn sortable(&self) -> bool
pub fn sortable(&self) -> bool
Returns the value of sortable
, or the default value if sortable
is unset.
sourcepub fn type_url(&self) -> &str
pub fn type_url(&self) -> &str
Returns the value of type_url
, or the default value if type_url
is unset.
sourcepub fn is_repeated(&self) -> bool
pub fn is_repeated(&self) -> bool
Returns the value of is_repeated
, or the default value if is_repeated
is unset.
Trait Implementations§
source§impl Clone for SearchAds360Field
impl Clone for SearchAds360Field
source§fn clone(&self) -> SearchAds360Field
fn clone(&self) -> SearchAds360Field
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SearchAds360Field
impl Debug for SearchAds360Field
source§impl Default for SearchAds360Field
impl Default for SearchAds360Field
source§impl Message for SearchAds360Field
impl Message for SearchAds360Field
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for SearchAds360Field
impl PartialEq for SearchAds360Field
source§fn eq(&self, other: &SearchAds360Field) -> bool
fn eq(&self, other: &SearchAds360Field) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SearchAds360Field
Auto Trait Implementations§
impl Freeze for SearchAds360Field
impl RefUnwindSafe for SearchAds360Field
impl Send for SearchAds360Field
impl Sync for SearchAds360Field
impl Unpin for SearchAds360Field
impl UnwindSafe for SearchAds360Field
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<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