pub struct ConversionEventUserClickIds {
pub fbc: Option<String>,
pub fbp: Option<String>,
pub gclid: Option<String>,
pub gbraid: Option<String>,
pub wbraid: Option<String>,
}Expand description
ConversionEventUserClickIds : Platform click identifiers captured from the originating ad click.
Fields§
§fbc: Option<String>Meta click ID (from fbclid URL param).
fbp: Option<String>Meta browser ID (_fbp cookie).
gclid: Option<String>Google click ID (from gclid URL param).
gbraid: Option<String>Google iOS 14.5+ app attribution ID.
wbraid: Option<String>Google iOS 14.5+ web-to-app attribution ID.
Implementations§
Source§impl ConversionEventUserClickIds
impl ConversionEventUserClickIds
Sourcepub fn new() -> ConversionEventUserClickIds
pub fn new() -> ConversionEventUserClickIds
Platform click identifiers captured from the originating ad click.
Trait Implementations§
Source§impl Clone for ConversionEventUserClickIds
impl Clone for ConversionEventUserClickIds
Source§fn clone(&self) -> ConversionEventUserClickIds
fn clone(&self) -> ConversionEventUserClickIds
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConversionEventUserClickIds
impl Debug for ConversionEventUserClickIds
Source§impl Default for ConversionEventUserClickIds
impl Default for ConversionEventUserClickIds
Source§fn default() -> ConversionEventUserClickIds
fn default() -> ConversionEventUserClickIds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConversionEventUserClickIds
impl<'de> Deserialize<'de> for ConversionEventUserClickIds
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConversionEventUserClickIds
impl PartialEq for ConversionEventUserClickIds
Source§fn eq(&self, other: &ConversionEventUserClickIds) -> bool
fn eq(&self, other: &ConversionEventUserClickIds) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConversionEventUserClickIds
Auto Trait Implementations§
impl Freeze for ConversionEventUserClickIds
impl RefUnwindSafe for ConversionEventUserClickIds
impl Send for ConversionEventUserClickIds
impl Sync for ConversionEventUserClickIds
impl Unpin for ConversionEventUserClickIds
impl UnsafeUnpin for ConversionEventUserClickIds
impl UnwindSafe for ConversionEventUserClickIds
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
Mutably borrows from an owned value. Read more