pub struct StatsHistoryResponse {
pub period: HistoryPeriod,
pub granularity: HistoryGranularity,
pub workflow: Option<String>,
pub buckets: Vec<StatsHistoryBucketResponse>,
}Expand description
Time-bucketed historical statistics response.
§Examples
use ironflow_api::entities::StatsHistoryResponse;Fields§
§period: HistoryPeriodThe period that was queried.
granularity: HistoryGranularityThe granularity of each bucket.
workflow: Option<String>Workflow name filter, if applied.
buckets: Vec<StatsHistoryBucketResponse>Aggregated buckets, sorted by time ascending.
Trait Implementations§
Source§impl Debug for StatsHistoryResponse
impl Debug for StatsHistoryResponse
Auto Trait Implementations§
impl Freeze for StatsHistoryResponse
impl RefUnwindSafe for StatsHistoryResponse
impl Send for StatsHistoryResponse
impl Sync for StatsHistoryResponse
impl Unpin for StatsHistoryResponse
impl UnsafeUnpin for StatsHistoryResponse
impl UnwindSafe for StatsHistoryResponse
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