pub struct UiScriptEventLogEntryV1 {
pub unix_ms: u64,
pub kind: String,
pub step_index: Option<u32>,
pub note: Option<String>,
pub bundle_dir: Option<String>,
pub window: Option<u64>,
pub tick_id: Option<u64>,
pub frame_id: Option<u64>,
pub window_snapshot_seq: Option<u64>,
}Fields§
§unix_ms: u64§kind: String§step_index: Option<u32>§note: Option<String>§bundle_dir: Option<String>§window: Option<u64>When available, identifies the window that observed/emitted this event.
tick_id: Option<u64>When available, the app tick id at the time of the event.
frame_id: Option<u64>When available, the app frame id at the time of the event.
window_snapshot_seq: Option<u64>Optional per-window snapshot sequence hint (may be resolved by tooling from bundle.index.json).
Trait Implementations§
Source§impl Clone for UiScriptEventLogEntryV1
impl Clone for UiScriptEventLogEntryV1
Source§fn clone(&self) -> UiScriptEventLogEntryV1
fn clone(&self) -> UiScriptEventLogEntryV1
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UiScriptEventLogEntryV1
impl Debug for UiScriptEventLogEntryV1
Source§impl<'de> Deserialize<'de> for UiScriptEventLogEntryV1
impl<'de> Deserialize<'de> for UiScriptEventLogEntryV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UiScriptEventLogEntryV1
impl RefUnwindSafe for UiScriptEventLogEntryV1
impl Send for UiScriptEventLogEntryV1
impl Sync for UiScriptEventLogEntryV1
impl Unpin for UiScriptEventLogEntryV1
impl UnsafeUnpin for UiScriptEventLogEntryV1
impl UnwindSafe for UiScriptEventLogEntryV1
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