pub struct NewPageVisitDatum {Show 17 fields
pub course_id: Option<Uuid>,
pub exam_id: Option<Uuid>,
pub page_id: Uuid,
pub country: Option<String>,
pub browser: Option<String>,
pub browser_version: Option<String>,
pub operating_system: Option<String>,
pub operating_system_version: Option<String>,
pub device_type: Option<String>,
pub referrer: Option<String>,
pub is_bot: bool,
pub utm_source: Option<String>,
pub utm_medium: Option<String>,
pub utm_campaign: Option<String>,
pub utm_term: Option<String>,
pub utm_content: Option<String>,
pub anonymous_identifier: String,
}Fields§
§course_id: Option<Uuid>§exam_id: Option<Uuid>§page_id: Uuid§country: Option<String>§browser: Option<String>§browser_version: Option<String>§operating_system: Option<String>§operating_system_version: Option<String>§device_type: Option<String>§referrer: Option<String>§is_bot: bool§utm_source: Option<String>§utm_medium: Option<String>§utm_campaign: Option<String>§utm_term: Option<String>§utm_content: Option<String>§anonymous_identifier: StringAuto Trait Implementations§
impl Freeze for NewPageVisitDatum
impl RefUnwindSafe for NewPageVisitDatum
impl Send for NewPageVisitDatum
impl Sync for NewPageVisitDatum
impl Unpin for NewPageVisitDatum
impl UnwindSafe for NewPageVisitDatum
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> 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