pub struct RelatedTelemetry {
pub filter_notes: Vec<String>,
pub spans: Vec<SpanRecord>,
pub logs: Vec<LogRecord>,
pub frontend_errors: Vec<FrontendError>,
pub tauri_ipc_calls: Vec<TauriIpcCall>,
pub tauri_events: Vec<TauriEventRecord>,
pub tauri_windows: Vec<TauriWindowState>,
}Fields§
§filter_notes: Vec<String>§spans: Vec<SpanRecord>§logs: Vec<LogRecord>§frontend_errors: Vec<FrontendError>§tauri_ipc_calls: Vec<TauriIpcCall>§tauri_events: Vec<TauriEventRecord>§tauri_windows: Vec<TauriWindowState>Trait Implementations§
Source§impl Clone for RelatedTelemetry
impl Clone for RelatedTelemetry
Source§fn clone(&self) -> RelatedTelemetry
fn clone(&self) -> RelatedTelemetry
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 RelatedTelemetry
impl Debug for RelatedTelemetry
Source§impl Default for RelatedTelemetry
impl Default for RelatedTelemetry
Source§fn default() -> RelatedTelemetry
fn default() -> RelatedTelemetry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RelatedTelemetry
impl<'de> Deserialize<'de> for RelatedTelemetry
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 RelatedTelemetry
impl PartialEq for RelatedTelemetry
Source§fn eq(&self, other: &RelatedTelemetry) -> bool
fn eq(&self, other: &RelatedTelemetry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RelatedTelemetry
impl Serialize for RelatedTelemetry
impl StructuralPartialEq for RelatedTelemetry
Auto Trait Implementations§
impl Freeze for RelatedTelemetry
impl RefUnwindSafe for RelatedTelemetry
impl Send for RelatedTelemetry
impl Sync for RelatedTelemetry
impl Unpin for RelatedTelemetry
impl UnsafeUnpin for RelatedTelemetry
impl UnwindSafe for RelatedTelemetry
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