pub struct TauriEventRecord {
pub session_id: String,
pub timestamp_unix_nanos: i64,
pub event_name: String,
pub direction: String,
pub target: Option<String>,
pub trace_id: Option<String>,
pub span_id: Option<String>,
pub window_label: Option<String>,
pub payload_summary: Option<String>,
pub payload_json: Option<Value>,
pub payload_redacted: bool,
}Fields§
§session_id: String§timestamp_unix_nanos: i64§event_name: String§direction: String§target: Option<String>§trace_id: Option<String>§span_id: Option<String>§window_label: Option<String>§payload_summary: Option<String>§payload_json: Option<Value>§payload_redacted: boolTrait Implementations§
Source§impl Clone for TauriEventRecord
impl Clone for TauriEventRecord
Source§fn clone(&self) -> TauriEventRecord
fn clone(&self) -> TauriEventRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TauriEventRecord
impl Debug for TauriEventRecord
Source§impl<'de> Deserialize<'de> for TauriEventRecord
impl<'de> Deserialize<'de> for TauriEventRecord
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
Source§impl PartialEq for TauriEventRecord
impl PartialEq for TauriEventRecord
Source§fn eq(&self, other: &TauriEventRecord) -> bool
fn eq(&self, other: &TauriEventRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TauriEventRecord
impl Serialize for TauriEventRecord
impl StructuralPartialEq for TauriEventRecord
Auto Trait Implementations§
impl Freeze for TauriEventRecord
impl RefUnwindSafe for TauriEventRecord
impl Send for TauriEventRecord
impl Sync for TauriEventRecord
impl Unpin for TauriEventRecord
impl UnsafeUnpin for TauriEventRecord
impl UnwindSafe for TauriEventRecord
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