Struct re_analytics::event::StoreInfo
source · pub struct StoreInfo {
pub application_id: Id,
pub recording_id: Id,
pub store_source: String,
pub store_version: String,
pub rust_version: Option<String>,
pub llvm_version: Option<String>,
pub python_version: Option<String>,
pub is_official_example: bool,
pub app_id_starts_with_rerun_example: bool,
}
Expand description
Basic information about a recording’s chunk store.
Fields§
§application_id: Id
Name of the application.
In case the recording does not come from an official example, the id is hashed.
recording_id: Id
Name of the recording.
In case the recording does not come from an official example, the id is hashed.
store_source: String
Where data is being logged.
store_version: String
The Rerun version that was used to encode the RRD data.
rust_version: Option<String>
§llvm_version: Option<String>
§python_version: Option<String>
§is_official_example: bool
§app_id_starts_with_rerun_example: bool
Auto Trait Implementations§
impl Freeze for StoreInfo
impl RefUnwindSafe for StoreInfo
impl Send for StoreInfo
impl Sync for StoreInfo
impl Unpin for StoreInfo
impl UnwindSafe for StoreInfo
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