pub struct MetricDeltaRow {
pub baseline_value: Number,
pub candidate_value: Number,
pub delta: Number,
pub delta_ratio: Option<f64>,
pub item_id: String,
pub name: String,
pub test_name: String,
pub unit: String,
}Fields§
§baseline_value: Number§candidate_value: Number§delta: Number§delta_ratio: Option<f64>§item_id: String§name: String§test_name: String§unit: StringTrait Implementations§
Source§impl Clone for MetricDeltaRow
impl Clone for MetricDeltaRow
Source§fn clone(&self) -> MetricDeltaRow
fn clone(&self) -> MetricDeltaRow
Returns a duplicate of the value. Read more
1.0.0 · 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 MetricDeltaRow
impl Debug for MetricDeltaRow
Source§impl PartialEq for MetricDeltaRow
impl PartialEq for MetricDeltaRow
Source§impl Serialize for MetricDeltaRow
impl Serialize for MetricDeltaRow
impl StructuralPartialEq for MetricDeltaRow
Auto Trait Implementations§
impl Freeze for MetricDeltaRow
impl RefUnwindSafe for MetricDeltaRow
impl Send for MetricDeltaRow
impl Sync for MetricDeltaRow
impl Unpin for MetricDeltaRow
impl UnsafeUnpin for MetricDeltaRow
impl UnwindSafe for MetricDeltaRow
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