pub enum ConfidenceMethod {
Computed,
ExpertJudgment,
LlmInitial,
}Expand description
Confidence method: how the score was determined.
Variants§
Computed
Computed from structured frontier support components (v0.2.0).
ExpertJudgment
A human expert assigned it.
LlmInitial
Legacy import path for confidence seeded before component breakdown existed.
Trait Implementations§
Source§impl Clone for ConfidenceMethod
impl Clone for ConfidenceMethod
Source§fn clone(&self) -> ConfidenceMethod
fn clone(&self) -> ConfidenceMethod
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 ConfidenceMethod
impl Debug for ConfidenceMethod
Source§impl Default for ConfidenceMethod
impl Default for ConfidenceMethod
Source§fn default() -> ConfidenceMethod
fn default() -> ConfidenceMethod
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfidenceMethod
impl<'de> Deserialize<'de> for ConfidenceMethod
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 ConfidenceMethod
impl PartialEq for ConfidenceMethod
Source§fn eq(&self, other: &ConfidenceMethod) -> bool
fn eq(&self, other: &ConfidenceMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConfidenceMethod
impl Serialize for ConfidenceMethod
impl Eq for ConfidenceMethod
impl StructuralPartialEq for ConfidenceMethod
Auto Trait Implementations§
impl Freeze for ConfidenceMethod
impl RefUnwindSafe for ConfidenceMethod
impl Send for ConfidenceMethod
impl Sync for ConfidenceMethod
impl Unpin for ConfidenceMethod
impl UnsafeUnpin for ConfidenceMethod
impl UnwindSafe for ConfidenceMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.