pub struct TraceSearchData {
pub result_type: String,
pub spans: Vec<Span>,
}Expand description
Response data for trace search.
Fields§
§result_type: StringResult type discriminator (always "spans").
spans: Vec<Span>Matching spans.
Trait Implementations§
Source§impl Clone for TraceSearchData
impl Clone for TraceSearchData
Source§fn clone(&self) -> TraceSearchData
fn clone(&self) -> TraceSearchData
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 TraceSearchData
impl Debug for TraceSearchData
Source§impl<'de> Deserialize<'de> for TraceSearchData
impl<'de> Deserialize<'de> for TraceSearchData
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 TraceSearchData
impl RefUnwindSafe for TraceSearchData
impl Send for TraceSearchData
impl Sync for TraceSearchData
impl Unpin for TraceSearchData
impl UnsafeUnpin for TraceSearchData
impl UnwindSafe for TraceSearchData
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