pub struct StatsParams {
pub since: Option<String>,
pub until: Option<String>,
pub auth_subject: Option<String>,
}Expand description
GET /v1/stats — the aggregate rollups.
Fields§
§since: Option<String>Lower bound, as an RFC 3339 timestamp.
until: Option<String>Upper bound, as an RFC 3339 timestamp.
auth_subject: Option<String>Narrow every total to sessions captured for this authenticated subject — the same subject the sessions listing filters by, so totals can agree with the rows beside them. Omitted, the totals are org-wide.
Trait Implementations§
Source§impl Clone for StatsParams
impl Clone for StatsParams
Source§fn clone(&self) -> StatsParams
fn clone(&self) -> StatsParams
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 ContractParams for StatsParams
impl ContractParams for StatsParams
Source§impl Debug for StatsParams
impl Debug for StatsParams
Source§impl Default for StatsParams
impl Default for StatsParams
Source§fn default() -> StatsParams
fn default() -> StatsParams
Returns the “default value” for a type. Read more
impl Eq for StatsParams
Source§impl PartialEq for StatsParams
impl PartialEq for StatsParams
impl StructuralPartialEq for StatsParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.