pub struct GoldEvalFrame<'a> {
pub event_tx: &'a Sender<AgentEvent>,
pub session_id: &'a str,
pub model: &'a str,
pub reasoning_effort: Option<ReasoningEffort>,
pub checkpoint: GoldCheckpoint,
pub iteration: u32,
}Expand description
Evaluation-scoped frame bundling parameters that identify and configure a
single gold evaluation pass. Passed into evaluate_gold to keep its
parameter count below the clippy threshold.
Fields§
§event_tx: &'a Sender<AgentEvent>§session_id: &'a str§model: &'a str§reasoning_effort: Option<ReasoningEffort>§checkpoint: GoldCheckpoint§iteration: u32Auto Trait Implementations§
impl<'a> Freeze for GoldEvalFrame<'a>
impl<'a> RefUnwindSafe for GoldEvalFrame<'a>
impl<'a> Send for GoldEvalFrame<'a>
impl<'a> Sync for GoldEvalFrame<'a>
impl<'a> Unpin for GoldEvalFrame<'a>
impl<'a> UnsafeUnpin for GoldEvalFrame<'a>
impl<'a> UnwindSafe for GoldEvalFrame<'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