pub struct Visit {
Show 14 fields pub resource_name: String, pub id: Option<i64>, pub criterion_id: Option<i64>, pub merchant_id: Option<i64>, pub ad_id: Option<i64>, pub click_id: Option<String>, pub visit_date_time: Option<String>, pub product_id: Option<String>, pub product_channel: Option<i32>, pub product_language_code: Option<String>, pub product_store_id: Option<String>, pub product_country_code: Option<String>, pub asset_id: Option<i64>, pub asset_field_type: Option<i32>,
}
Expand description

A visit.

Fields§

§resource_name: String

Output only. The resource name of the visit. Visit resource names have the form:

customers/{customer_id}/visits/{ad_group_id}~{criterion_id}~{ds_visit_id}

§id: Option<i64>

Output only. The ID of the visit.

§criterion_id: Option<i64>

Output only. Search Ads 360 keyword ID. A value of 0 indicates that the keyword is unattributed.

§merchant_id: Option<i64>

Output only. The Search Ads 360 inventory account ID containing the product that was clicked on. Search Ads 360 generates this ID when you link an inventory account in Search Ads 360.

§ad_id: Option<i64>

Output only. Ad ID. A value of 0 indicates that the ad is unattributed.

§click_id: Option<String>

Output only. A unique string for each visit that is passed to the landing page as the click id URL parameter.

§visit_date_time: Option<String>

Output only. The timestamp of the visit event. The timestamp is in the customer’s time zone and in “yyyy-MM-dd HH:mm:ss” format.

§product_id: Option<String>

Output only. The ID of the product clicked on.

§product_channel: Option<i32>

Output only. The sales channel of the product that was clicked on: Online or Local.

§product_language_code: Option<String>

Output only. The language (ISO-639-1) that has been set for the Merchant Center feed containing data about the product.

§product_store_id: Option<String>

Output only. The store in the Local Inventory Ad that was clicked on. This should match the store IDs used in your local products feed.

§product_country_code: Option<String>

Output only. The country (ISO-3166 format) registered for the inventory feed that contains the product clicked on.

§asset_id: Option<i64>

Output only. ID of the asset which was interacted with during the visit event.

§asset_field_type: Option<i32>

Output only. Asset field type of the visit event.

Implementations§

source§

impl Visit

source

pub fn id(&self) -> i64

Returns the value of id, or the default value if id is unset.

source

pub fn criterion_id(&self) -> i64

Returns the value of criterion_id, or the default value if criterion_id is unset.

source

pub fn merchant_id(&self) -> i64

Returns the value of merchant_id, or the default value if merchant_id is unset.

source

pub fn ad_id(&self) -> i64

Returns the value of ad_id, or the default value if ad_id is unset.

source

pub fn click_id(&self) -> &str

Returns the value of click_id, or the default value if click_id is unset.

source

pub fn visit_date_time(&self) -> &str

Returns the value of visit_date_time, or the default value if visit_date_time is unset.

source

pub fn product_id(&self) -> &str

Returns the value of product_id, or the default value if product_id is unset.

source

pub fn product_channel(&self) -> ProductChannel

Returns the enum value of product_channel, or the default if the field is unset or set to an invalid enum value.

source

pub fn set_product_channel(&mut self, value: ProductChannel)

Sets product_channel to the provided enum value.

source

pub fn product_language_code(&self) -> &str

Returns the value of product_language_code, or the default value if product_language_code is unset.

source

pub fn product_store_id(&self) -> &str

Returns the value of product_store_id, or the default value if product_store_id is unset.

source

pub fn product_country_code(&self) -> &str

Returns the value of product_country_code, or the default value if product_country_code is unset.

source

pub fn asset_id(&self) -> i64

Returns the value of asset_id, or the default value if asset_id is unset.

source

pub fn asset_field_type(&self) -> AssetFieldType

Returns the enum value of asset_field_type, or the default if the field is unset or set to an invalid enum value.

source

pub fn set_asset_field_type(&mut self, value: AssetFieldType)

Sets asset_field_type to the provided enum value.

Trait Implementations§

source§

impl Clone for Visit

source§

fn clone(&self) -> Visit

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Visit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Visit

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Message for Visit

source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
source§

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message to a buffer. Read more
source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
source§

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
source§

fn decode<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes an instance of the message from a buffer. Read more
source§

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes a length-delimited instance of the message from the buffer.
source§

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
source§

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
source§

impl PartialEq for Visit

source§

fn eq(&self, other: &Visit) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Visit

Auto Trait Implementations§

§

impl Freeze for Visit

§

impl RefUnwindSafe for Visit

§

impl Send for Visit

§

impl Sync for Visit

§

impl Unpin for Visit

§

impl UnwindSafe for Visit

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more