pub struct LinkClick {Show 18 fields
pub id: LinkClickId,
pub link_id: LinkId,
pub session_id: SessionId,
pub user_id: Option<UserId>,
pub context_id: Option<ContextId>,
pub task_id: Option<TaskId>,
pub referrer_page: Option<String>,
pub referrer_url: Option<String>,
pub clicked_at: Option<DateTime<Utc>>,
pub user_agent: Option<String>,
pub ip_address: Option<String>,
pub device_type: Option<String>,
pub country: Option<String>,
pub is_first_click: Option<bool>,
pub is_conversion: Option<bool>,
pub conversion_at: Option<DateTime<Utc>>,
pub time_on_page_seconds: Option<i32>,
pub scroll_depth_percent: Option<i32>,
}Fields§
§id: LinkClickId§link_id: LinkId§session_id: SessionId§user_id: Option<UserId>§context_id: Option<ContextId>§task_id: Option<TaskId>§referrer_page: Option<String>§referrer_url: Option<String>§clicked_at: Option<DateTime<Utc>>§user_agent: Option<String>§ip_address: Option<String>§device_type: Option<String>§country: Option<String>§is_first_click: Option<bool>§is_conversion: Option<bool>§conversion_at: Option<DateTime<Utc>>§time_on_page_seconds: Option<i32>§scroll_depth_percent: Option<i32>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LinkClick
impl<'de> Deserialize<'de> for LinkClick
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<'a, R: Row> FromRow<'a, R> for LinkClickwhere
&'a str: ColumnIndex<R>,
LinkClickId: Decode<'a, R::Database> + Type<R::Database>,
LinkId: Decode<'a, R::Database> + Type<R::Database>,
SessionId: Decode<'a, R::Database> + Type<R::Database>,
Option<UserId>: Decode<'a, R::Database> + Type<R::Database>,
Option<ContextId>: Decode<'a, R::Database> + Type<R::Database>,
Option<TaskId>: Decode<'a, R::Database> + Type<R::Database>,
Option<String>: Decode<'a, R::Database> + Type<R::Database>,
Option<DateTime<Utc>>: Decode<'a, R::Database> + Type<R::Database>,
Option<bool>: Decode<'a, R::Database> + Type<R::Database>,
Option<i32>: Decode<'a, R::Database> + Type<R::Database>,
impl<'a, R: Row> FromRow<'a, R> for LinkClickwhere
&'a str: ColumnIndex<R>,
LinkClickId: Decode<'a, R::Database> + Type<R::Database>,
LinkId: Decode<'a, R::Database> + Type<R::Database>,
SessionId: Decode<'a, R::Database> + Type<R::Database>,
Option<UserId>: Decode<'a, R::Database> + Type<R::Database>,
Option<ContextId>: Decode<'a, R::Database> + Type<R::Database>,
Option<TaskId>: Decode<'a, R::Database> + Type<R::Database>,
Option<String>: Decode<'a, R::Database> + Type<R::Database>,
Option<DateTime<Utc>>: Decode<'a, R::Database> + Type<R::Database>,
Option<bool>: Decode<'a, R::Database> + Type<R::Database>,
Option<i32>: Decode<'a, R::Database> + Type<R::Database>,
Auto Trait Implementations§
impl Freeze for LinkClick
impl RefUnwindSafe for LinkClick
impl Send for LinkClick
impl Sync for LinkClick
impl Unpin for LinkClick
impl UnwindSafe for LinkClick
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more