pub enum TracingEvent {
TraceCreated {
trace: TraceSummary,
},
TraceUpdated {
trace: TraceSummary,
},
SpanCreated {
span: Span,
},
SpanUpdated {
span: Span,
},
}Expand description
Events emitted by the tracing system for real-time updates
Variants§
TraceCreated
Fields
§
trace: TraceSummaryTraceUpdated
Fields
§
trace: TraceSummarySpanCreated
SpanUpdated
Trait Implementations§
Source§impl Clone for TracingEvent
impl Clone for TracingEvent
Source§fn clone(&self) -> TracingEvent
fn clone(&self) -> TracingEvent
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 TracingEvent
impl Debug for TracingEvent
Source§impl<'de> Deserialize<'de> for TracingEvent
impl<'de> Deserialize<'de> for TracingEvent
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 TracingEvent
impl RefUnwindSafe for TracingEvent
impl Send for TracingEvent
impl Sync for TracingEvent
impl Unpin for TracingEvent
impl UnsafeUnpin for TracingEvent
impl UnwindSafe for TracingEvent
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