pub struct AnalyticsSession {
pub session_id: String,
pub user_id: Option<String>,
pub fingerprint: Option<String>,
pub created_at: DateTime<Utc>,
}Fields§
§session_id: String§user_id: Option<String>§fingerprint: Option<String>§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for AnalyticsSession
impl Clone for AnalyticsSession
Source§fn clone(&self) -> AnalyticsSession
fn clone(&self) -> AnalyticsSession
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 moreAuto Trait Implementations§
impl Freeze for AnalyticsSession
impl RefUnwindSafe for AnalyticsSession
impl Send for AnalyticsSession
impl Sync for AnalyticsSession
impl Unpin for AnalyticsSession
impl UnwindSafe for AnalyticsSession
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