pub struct CurveStats {
pub duration: Duration,
pub stages: Vec<Stage>,
pub stage_stats: Vec<StageStats>,
}Expand description
Curve-specific metadata captured at the end of a curve run.
Fields§
§duration: Duration§stages: Vec<Stage>§stage_stats: Vec<StageStats>Per-stage histogram data — one entry per stage in the load curve.
Auto Trait Implementations§
impl Freeze for CurveStats
impl RefUnwindSafe for CurveStats
impl Send for CurveStats
impl Sync for CurveStats
impl Unpin for CurveStats
impl UnsafeUnpin for CurveStats
impl UnwindSafe for CurveStats
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