pub struct DiffReport {
pub scenario: String,
pub p50: MetricDiff,
pub p95: MetricDiff,
pub regressed: bool,
pub notes: Vec<String>,
}Fields§
§scenario: String§p50: MetricDiff§p95: MetricDiff§regressed: booltrue if any gated metric exceeded its tolerance.
notes: Vec<String>Non-gated observations worth printing — e.g. response_bytes changed, passes_applied set differs.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiffReport
impl RefUnwindSafe for DiffReport
impl Send for DiffReport
impl Sync for DiffReport
impl Unpin for DiffReport
impl UnsafeUnpin for DiffReport
impl UnwindSafe for DiffReport
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