pub struct GradeContext<'a> {
pub iteration_dir: &'a Path,
pub conditions: &'a ConditionsRecord,
pub evals: &'a EvalsConfig,
}Expand description
The resolved inputs both grade modes read: the iteration directory, the
conditions manifest, and the validated evals config (its skill_name is the
one used in meta-check rubrics).
Fields§
§iteration_dir: &'a Path§conditions: &'a ConditionsRecord§evals: &'a EvalsConfigAuto Trait Implementations§
impl<'a> Freeze for GradeContext<'a>
impl<'a> RefUnwindSafe for GradeContext<'a>
impl<'a> Send for GradeContext<'a>
impl<'a> Sync for GradeContext<'a>
impl<'a> Unpin for GradeContext<'a>
impl<'a> UnsafeUnpin for GradeContext<'a>
impl<'a> UnwindSafe for GradeContext<'a>
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