pub struct TraceListItem {
pub trace_id: String,
pub root_name: String,
pub duration_ms: i64,
pub span_count: usize,
pub status: String,
}Fields§
§trace_id: String§root_name: String§duration_ms: i64§span_count: usize§status: StringTrait Implementations§
Source§impl Clone for TraceListItem
impl Clone for TraceListItem
Source§fn clone(&self) -> TraceListItem
fn clone(&self) -> TraceListItem
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 moreSource§impl Debug for TraceListItem
impl Debug for TraceListItem
Source§impl<'de> Deserialize<'de> for TraceListItem
impl<'de> Deserialize<'de> for TraceListItem
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 TraceListItem
impl RefUnwindSafe for TraceListItem
impl Send for TraceListItem
impl Sync for TraceListItem
impl Unpin for TraceListItem
impl UnwindSafe for TraceListItem
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