pub struct StatsQuery {
pub interval: Option<String>,
pub stime: Option<String>,
pub etime: Option<String>,
pub metrics: Option<String>,
}
Expand description
Stats query parameters
Fields§
§interval: Option<String>
Time interval for aggregation (“1min”, “5min”, “1hour”, “1day”)
stime: Option<String>
Start time for the query (ISO 8601 format)
etime: Option<String>
End time for the query (ISO 8601 format)
metrics: Option<String>
Comma-separated list of specific metrics to retrieve
Trait Implementations§
Source§impl Debug for StatsQuery
impl Debug for StatsQuery
Auto Trait Implementations§
impl Freeze for StatsQuery
impl RefUnwindSafe for StatsQuery
impl Send for StatsQuery
impl Sync for StatsQuery
impl Unpin for StatsQuery
impl UnwindSafe for StatsQuery
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