pub struct ScorerMean {
pub scorer_id: String,
pub mean: Option<f64>,
pub baseline_mean: Option<f64>,
pub pass_rate: Option<f64>,
pub baseline_pass_rate: Option<f64>,
pub scored: i32,
pub missing_in_baseline: i32,
pub definition_changed: bool,
}Expand description
ScorerMean : A column’s summary. There is no single number for a dataset: averaging a judge with an exact match would invent one.
Fields§
§scorer_id: String§mean: Option<f64>§baseline_mean: Option<f64>§pass_rate: Option<f64>The share of scored cells that passed, for a column with a threshold. Reported beside the mean rather than instead of it: a pass rate says how many cases are good enough, a mean says by how much, and neither answers the other’s question.
baseline_pass_rate: Option<f64>§scored: i32§missing_in_baseline: i32Cells the baseline has no score for, so a column the baseline never ran shows as unscored rather than as a spurious difference.
definition_changed: boolImplementations§
Source§impl ScorerMean
impl ScorerMean
Trait Implementations§
Source§impl Clone for ScorerMean
impl Clone for ScorerMean
Source§fn clone(&self) -> ScorerMean
fn clone(&self) -> ScorerMean
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 ScorerMean
impl Debug for ScorerMean
Source§impl Default for ScorerMean
impl Default for ScorerMean
Source§fn default() -> ScorerMean
fn default() -> ScorerMean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScorerMean
impl<'de> Deserialize<'de> for ScorerMean
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
Source§impl PartialEq for ScorerMean
impl PartialEq for ScorerMean
Source§impl Serialize for ScorerMean
impl Serialize for ScorerMean
impl StructuralPartialEq for ScorerMean
Auto Trait Implementations§
impl Freeze for ScorerMean
impl RefUnwindSafe for ScorerMean
impl Send for ScorerMean
impl Sync for ScorerMean
impl Unpin for ScorerMean
impl UnsafeUnpin for ScorerMean
impl UnwindSafe for ScorerMean
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