pub struct MetricDiff {
pub baseline: f64,
pub current: f64,
pub delta_pct: f64,
pub tolerance_pct: f64,
pub regressed: bool,
}Fields§
§baseline: f64§current: f64§delta_pct: f64§tolerance_pct: f64§regressed: boolTrait Implementations§
Source§impl Clone for MetricDiff
impl Clone for MetricDiff
Source§fn clone(&self) -> MetricDiff
fn clone(&self) -> MetricDiff
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 Debug for MetricDiff
impl Debug for MetricDiff
impl Copy for MetricDiff
Auto Trait Implementations§
impl Freeze for MetricDiff
impl RefUnwindSafe for MetricDiff
impl Send for MetricDiff
impl Sync for MetricDiff
impl Unpin for MetricDiff
impl UnsafeUnpin for MetricDiff
impl UnwindSafe for MetricDiff
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