pub struct DispatchOutcome {
pub score: Score,
pub pass: bool,
pub details: DetailBuffer,
pub verdict: JudgeVerdict,
}Expand description
Outcome of a dispatch_judge call (T056).
Fields§
§score: ScoreClamped score in [0.0, 1.0].
pass: boolThe judge’s own pass/fail determination.
details: DetailBufferStructured detail entries (prompt_version, optional ScoreClamped).
verdict: JudgeVerdictRaw verdict for downstream evaluators that need label/reason.
Trait Implementations§
Source§impl Clone for DispatchOutcome
impl Clone for DispatchOutcome
Source§fn clone(&self) -> DispatchOutcome
fn clone(&self) -> DispatchOutcome
Returns a duplicate of the value. Read more
1.0.0 · 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 DispatchOutcome
impl RefUnwindSafe for DispatchOutcome
impl Send for DispatchOutcome
impl Sync for DispatchOutcome
impl Unpin for DispatchOutcome
impl UnsafeUnpin for DispatchOutcome
impl UnwindSafe for DispatchOutcome
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