pub struct BenchmarkMetricDelta {
pub baseline_ms: f64,
pub current_ms: f64,
pub delta_ms: f64,
pub delta_pct: f64,
}Fields§
§baseline_ms: f64§current_ms: f64§delta_ms: f64§delta_pct: f64Trait Implementations§
Source§impl Clone for BenchmarkMetricDelta
impl Clone for BenchmarkMetricDelta
Source§fn clone(&self) -> BenchmarkMetricDelta
fn clone(&self) -> BenchmarkMetricDelta
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 BenchmarkMetricDelta
impl Debug for BenchmarkMetricDelta
Source§impl PartialEq for BenchmarkMetricDelta
impl PartialEq for BenchmarkMetricDelta
Source§fn eq(&self, other: &BenchmarkMetricDelta) -> bool
fn eq(&self, other: &BenchmarkMetricDelta) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BenchmarkMetricDelta
impl Serialize for BenchmarkMetricDelta
impl StructuralPartialEq for BenchmarkMetricDelta
Auto Trait Implementations§
impl Freeze for BenchmarkMetricDelta
impl RefUnwindSafe for BenchmarkMetricDelta
impl Send for BenchmarkMetricDelta
impl Sync for BenchmarkMetricDelta
impl Unpin for BenchmarkMetricDelta
impl UnsafeUnpin for BenchmarkMetricDelta
impl UnwindSafe for BenchmarkMetricDelta
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