pub struct RegressionReport {
pub metric_name: String,
pub workload_name: String,
pub baseline_value: f64,
pub current_value: f64,
pub degradation: f64,
}Expand description
A regression detected during baseline comparison.
Reports which metric and workload regressed, the baseline and current values, and the degradation percentage.
Fields§
§metric_name: StringThe metric that regressed (e.g., “agent_loop_overhead_mean_us”).
workload_name: StringThe workload where the regression was detected.
baseline_value: f64The baseline value for the metric.
current_value: f64The current measured value for the metric.
degradation: f64Degradation as a fraction (e.g., 0.15 means 15% worse).
Trait Implementations§
Source§impl Clone for RegressionReport
impl Clone for RegressionReport
Source§fn clone(&self) -> RegressionReport
fn clone(&self) -> RegressionReport
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 moreAuto Trait Implementations§
impl Freeze for RegressionReport
impl RefUnwindSafe for RegressionReport
impl Send for RegressionReport
impl Sync for RegressionReport
impl Unpin for RegressionReport
impl UnsafeUnpin for RegressionReport
impl UnwindSafe for RegressionReport
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