pub struct StatsParams {
pub proxy: Option<String>,
pub since_ts: i64,
}Expand description
Filter parameters for the stats query.
Fields§
§proxy: Option<String>Proxy name to filter by (None = all proxies).
since_ts: i64Only rows newer than this unix ms timestamp.
Auto Trait Implementations§
impl Freeze for StatsParams
impl RefUnwindSafe for StatsParams
impl Send for StatsParams
impl Sync for StatsParams
impl Unpin for StatsParams
impl UnsafeUnpin for StatsParams
impl UnwindSafe for StatsParams
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