pub enum EvaluationConfidence {
Available,
Cited,
Judged,
Measured,
Statistical,
}Expand description
Confidence level for an evaluation result.
Variants§
Available
Evidence was available, but no evaluator judgment or cited support exists.
Cited
The evaluator cited refs that were validated against the evidence bundle.
Judged
The evaluator judged the result without measured comparison evidence.
Measured
A comparison, baseline, ablation, or repeated experiment produced a metric delta.
Statistical
Repeated experiments produced statistical evidence.
Implementations§
Source§impl EvaluationConfidence
impl EvaluationConfidence
Sourcepub fn is_measured(&self) -> bool
pub fn is_measured(&self) -> bool
Returns true when this confidence claims measured impact.
Trait Implementations§
Source§impl Clone for EvaluationConfidence
impl Clone for EvaluationConfidence
Source§fn clone(&self) -> EvaluationConfidence
fn clone(&self) -> EvaluationConfidence
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 EvaluationConfidence
impl Debug for EvaluationConfidence
Source§impl<'de> Deserialize<'de> for EvaluationConfidence
impl<'de> Deserialize<'de> for EvaluationConfidence
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 EvaluationConfidence
impl PartialEq for EvaluationConfidence
Source§fn eq(&self, other: &EvaluationConfidence) -> bool
fn eq(&self, other: &EvaluationConfidence) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EvaluationConfidence
impl Serialize for EvaluationConfidence
impl Eq for EvaluationConfidence
impl StructuralPartialEq for EvaluationConfidence
Auto Trait Implementations§
impl Freeze for EvaluationConfidence
impl RefUnwindSafe for EvaluationConfidence
impl Send for EvaluationConfidence
impl Sync for EvaluationConfidence
impl Unpin for EvaluationConfidence
impl UnsafeUnpin for EvaluationConfidence
impl UnwindSafe for EvaluationConfidence
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