Struct re_analytics::event::ViewerStarted
source · pub struct ViewerStarted {
pub url: Option<String>,
pub app_env: &'static str,
pub runtime_info: ViewerRuntimeInformation,
}
Expand description
Sent when the viewer is first started.
Used in re_viewer
.
Fields§
§url: Option<String>
The URL on which the web viewer is running.
This will be used to populate hashed_root_domain
property for all urls.
This will also populate rerun_url
property if the url root domain is rerun.io
.
app_env: &'static str
The environment in which the viewer is running.
runtime_info: ViewerRuntimeInformation
Sparse information about the runtime environment the viewer is running in.
Trait Implementations§
source§impl Event for ViewerStarted
impl Event for ViewerStarted
source§impl Properties for ViewerStarted
impl Properties for ViewerStarted
fn serialize(self, event: &mut AnalyticsEvent)
Auto Trait Implementations§
impl Freeze for ViewerStarted
impl RefUnwindSafe for ViewerStarted
impl Send for ViewerStarted
impl Sync for ViewerStarted
impl Unpin for ViewerStarted
impl UnwindSafe for ViewerStarted
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