pub struct SlowParams {
pub proxy: Option<String>,
pub threshold_us: i64,
pub since_ts: i64,
pub tool: Option<String>,
pub limit: i64,
}Expand description
Filter parameters for the slow query.
Fields§
§proxy: Option<String>Proxy name to filter by (None = all proxies).
threshold_us: i64Minimum latency in microseconds to include.
since_ts: i64Only rows newer than this unix ms timestamp.
tool: Option<String>Filter to a specific tool name.
limit: i64Maximum number of rows to return.
Auto Trait Implementations§
impl Freeze for SlowParams
impl RefUnwindSafe for SlowParams
impl Send for SlowParams
impl Sync for SlowParams
impl Unpin for SlowParams
impl UnsafeUnpin for SlowParams
impl UnwindSafe for SlowParams
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