pub struct RuntimeTelemetryEnvelope<P: Serialize> {
pub event_label: &'static str,
pub uuid: String,
pub cid: Option<String>,
pub session_id: String,
pub os: Option<String>,
pub arch: Option<String>,
pub release: Option<String>,
pub run_kind: String,
pub payload: P,
}Fields§
§event_label: &'static str§uuid: String§cid: Option<String>§session_id: String§os: Option<String>§arch: Option<String>§release: Option<String>§run_kind: String§payload: PTrait Implementations§
Source§impl<P: Clone + Serialize> Clone for RuntimeTelemetryEnvelope<P>
impl<P: Clone + Serialize> Clone for RuntimeTelemetryEnvelope<P>
Source§fn clone(&self) -> RuntimeTelemetryEnvelope<P>
fn clone(&self) -> RuntimeTelemetryEnvelope<P>
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 moreAuto Trait Implementations§
impl<P> Freeze for RuntimeTelemetryEnvelope<P>where
P: Freeze,
impl<P> RefUnwindSafe for RuntimeTelemetryEnvelope<P>where
P: RefUnwindSafe,
impl<P> Send for RuntimeTelemetryEnvelope<P>where
P: Send,
impl<P> Sync for RuntimeTelemetryEnvelope<P>where
P: Sync,
impl<P> Unpin for RuntimeTelemetryEnvelope<P>where
P: Unpin,
impl<P> UnsafeUnpin for RuntimeTelemetryEnvelope<P>where
P: UnsafeUnpin,
impl<P> UnwindSafe for RuntimeTelemetryEnvelope<P>where
P: UnwindSafe,
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