Struct re_analytics::event::OpenRecording
source · pub struct OpenRecording {
pub url: Option<String>,
pub app_env: &'static str,
pub store_info: Option<StoreInfo>,
pub data_source: Option<&'static str>,
}
Expand description
Sent when a new recording is opened.
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.
store_info: Option<StoreInfo>
§data_source: Option<&'static str>
How data is being loaded into the viewer.
Trait Implementations§
source§impl Event for OpenRecording
impl Event for OpenRecording
source§impl Properties for OpenRecording
impl Properties for OpenRecording
fn serialize(self, event: &mut AnalyticsEvent)
Auto Trait Implementations§
impl Freeze for OpenRecording
impl RefUnwindSafe for OpenRecording
impl Send for OpenRecording
impl Sync for OpenRecording
impl Unpin for OpenRecording
impl UnwindSafe for OpenRecording
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