pub enum ScoringMethod {
Deterministic,
LlmJudge,
Hybrid,
Heuristic,
}Variants§
Deterministic
Deterministic check (schema validation, keyword match, etc.)
LlmJudge
LLM judge evaluation
Hybrid
Combination of both
Heuristic
Heuristic approximation (no LLM, no hard rules)
Trait Implementations§
Source§impl Clone for ScoringMethod
impl Clone for ScoringMethod
Source§fn clone(&self) -> ScoringMethod
fn clone(&self) -> ScoringMethod
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 ScoringMethod
impl Debug for ScoringMethod
Source§impl<'de> Deserialize<'de> for ScoringMethod
impl<'de> Deserialize<'de> for ScoringMethod
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 ScoringMethod
impl PartialEq for ScoringMethod
Source§fn eq(&self, other: &ScoringMethod) -> bool
fn eq(&self, other: &ScoringMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScoringMethod
impl Serialize for ScoringMethod
impl Eq for ScoringMethod
impl StructuralPartialEq for ScoringMethod
Auto Trait Implementations§
impl Freeze for ScoringMethod
impl RefUnwindSafe for ScoringMethod
impl Send for ScoringMethod
impl Sync for ScoringMethod
impl Unpin for ScoringMethod
impl UnsafeUnpin for ScoringMethod
impl UnwindSafe for ScoringMethod
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