pub struct EvalResult {
pub passed: bool,
pub overall_score: f32,
pub feedback: String,
pub details: Vec<CriterionResult>,
pub skill_candidate: Option<SkillCandidate>,
}Expand description
The structured verdict produced by parsing the eval LLM’s JSON response.
Fields§
§passed: bool§overall_score: f32Weighted aggregate score across all criteria (0.0–1.0).
feedback: StringHuman-readable summary injected into the next attempt’s goal.
details: Vec<CriterionResult>Per-criterion breakdown.
skill_candidate: Option<SkillCandidate>Trait Implementations§
Source§impl Clone for EvalResult
impl Clone for EvalResult
Source§fn clone(&self) -> EvalResult
fn clone(&self) -> EvalResult
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 moreAuto Trait Implementations§
impl Freeze for EvalResult
impl RefUnwindSafe for EvalResult
impl Send for EvalResult
impl Sync for EvalResult
impl Unpin for EvalResult
impl UnsafeUnpin for EvalResult
impl UnwindSafe for EvalResult
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