pub struct EngagementUpdatePayload {
pub session_id: String,
pub page_url: String,
pub scroll_depth: i32,
pub time_on_page_ms: i64,
pub click_count: i32,
}Fields§
§session_id: String§page_url: String§scroll_depth: i32§time_on_page_ms: i64§click_count: i32Trait Implementations§
Source§impl Clone for EngagementUpdatePayload
impl Clone for EngagementUpdatePayload
Source§fn clone(&self) -> EngagementUpdatePayload
fn clone(&self) -> EngagementUpdatePayload
Returns a duplicate of the value. Read more
1.0.0 · 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 EngagementUpdatePayload
impl Debug for EngagementUpdatePayload
Source§impl<'de> Deserialize<'de> for EngagementUpdatePayload
impl<'de> Deserialize<'de> for EngagementUpdatePayload
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
Auto Trait Implementations§
impl Freeze for EngagementUpdatePayload
impl RefUnwindSafe for EngagementUpdatePayload
impl Send for EngagementUpdatePayload
impl Sync for EngagementUpdatePayload
impl Unpin for EngagementUpdatePayload
impl UnwindSafe for EngagementUpdatePayload
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