pub struct TraceQuery {
pub service: Option<String>,
pub operation: Option<String>,
pub resource: Option<String>,
pub start: i64,
pub end: i64,
pub limit: Option<i32>,
}Expand description
Query parameters for searching traces
Fields§
§service: Option<String>Service name filter
operation: Option<String>Operation name filter
resource: Option<String>Resource filter
start: i64Start time (seconds since epoch)
end: i64End time (seconds since epoch)
limit: Option<i32>Maximum number of results
Trait Implementations§
Source§impl Clone for TraceQuery
impl Clone for TraceQuery
Source§fn clone(&self) -> TraceQuery
fn clone(&self) -> TraceQuery
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 TraceQuery
impl Debug for TraceQuery
Source§impl<'de> Deserialize<'de> for TraceQuery
impl<'de> Deserialize<'de> for TraceQuery
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 TraceQuery
impl RefUnwindSafe for TraceQuery
impl Send for TraceQuery
impl Sync for TraceQuery
impl Unpin for TraceQuery
impl UnwindSafe for TraceQuery
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