Struct re_analytics::event::Identify
source · pub struct Identify {
pub build_info: BuildInfo,
pub rust_version: Option<String>,
pub llvm_version: Option<String>,
pub python_version: Option<String>,
pub opt_in_metadata: HashMap<String, Property>,
}
Expand description
Holds information about the user’s environment.
Used in re_viewer
.
Fields§
§build_info: BuildInfo
Info on how the re_viewer
crate was built.
rust_version: Option<String>
§llvm_version: Option<String>
§python_version: Option<String>
§opt_in_metadata: HashMap<String, Property>
Opt-in meta-data you can set via rerun analytics
.
For instance, Rerun employees are encouraged to set rerun analytics email
.
For real users, this is usually empty.
Trait Implementations§
source§impl Properties for Identify
impl Properties for Identify
fn serialize(self, event: &mut AnalyticsEvent)
Auto Trait Implementations§
impl Freeze for Identify
impl RefUnwindSafe for Identify
impl Send for Identify
impl Sync for Identify
impl Unpin for Identify
impl UnwindSafe for Identify
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