pub struct DimensionComparison {
pub dimension: String,
pub champion_score: f64,
pub candidate_score: f64,
pub outcome: DimensionOutcome,
pub delta: f64,
}Expand description
Per-dimension comparison of champion vs. candidate.
Fields§
§dimension: String§champion_score: f64§candidate_score: f64§outcome: DimensionOutcome§delta: f64Trait Implementations§
Source§impl Clone for DimensionComparison
impl Clone for DimensionComparison
Source§fn clone(&self) -> DimensionComparison
fn clone(&self) -> DimensionComparison
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 DimensionComparison
impl Debug for DimensionComparison
Source§impl<'de> Deserialize<'de> for DimensionComparison
impl<'de> Deserialize<'de> for DimensionComparison
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DimensionComparison
impl RefUnwindSafe for DimensionComparison
impl Send for DimensionComparison
impl Sync for DimensionComparison
impl Unpin for DimensionComparison
impl UnsafeUnpin for DimensionComparison
impl UnwindSafe for DimensionComparison
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