pub struct TracesQuery {
pub min_duration: Option<i64>,
pub max_duration: Option<i64>,
pub has_errors: Option<bool>,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub limit: Option<usize>,
pub offset: Option<usize>,
}Fields§
§min_duration: Option<i64>§max_duration: Option<i64>§has_errors: Option<bool>§start_time: Option<i64>§end_time: Option<i64>§limit: Option<usize>§offset: Option<usize>Trait Implementations§
Source§impl Clone for TracesQuery
impl Clone for TracesQuery
Source§fn clone(&self) -> TracesQuery
fn clone(&self) -> TracesQuery
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 TracesQuery
impl Debug for TracesQuery
Source§impl Default for TracesQuery
impl Default for TracesQuery
Auto Trait Implementations§
impl Freeze for TracesQuery
impl RefUnwindSafe for TracesQuery
impl Send for TracesQuery
impl Sync for TracesQuery
impl Unpin for TracesQuery
impl UnsafeUnpin for TracesQuery
impl UnwindSafe for TracesQuery
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