pub struct Judgement {
pub disposition: Disposition,
pub selection: Tally,
pub holdout: Tally,
pub work_baseline: u64,
pub work_candidate: u64,
}Expand description
The full result of grading a candidate, kept whole so a proposal records what it was decided from rather than only the verdict.
Fields§
§disposition: Disposition§selection: Tally§holdout: Tally§work_baseline: u64Tool calls attempted across each arm — the work guardrail. A change that improves its metric by attempting less has not improved anything.
work_candidate: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Judgement
impl RefUnwindSafe for Judgement
impl Send for Judgement
impl Sync for Judgement
impl Unpin for Judgement
impl UnsafeUnpin for Judgement
impl UnwindSafe for Judgement
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