pub struct TraceDetail {
pub trace_id: String,
pub spans: Vec<SpanDisplay>,
pub total_duration_ms: f64,
pub root_span: Option<SpanDisplay>,
}Fields§
§trace_id: String§spans: Vec<SpanDisplay>§total_duration_ms: f64§root_span: Option<SpanDisplay>Trait Implementations§
Source§impl Clone for TraceDetail
impl Clone for TraceDetail
Source§fn clone(&self) -> TraceDetail
fn clone(&self) -> TraceDetail
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 TraceDetail
impl Debug for TraceDetail
Auto Trait Implementations§
impl Freeze for TraceDetail
impl RefUnwindSafe for TraceDetail
impl Send for TraceDetail
impl Sync for TraceDetail
impl Unpin for TraceDetail
impl UnsafeUnpin for TraceDetail
impl UnwindSafe for TraceDetail
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