pub struct RecordRunsResult {
pub recorded: usize,
pub skipped_existing: usize,
pub skipped_no_final_message: usize,
pub missing_transcript: usize,
pub skipped_prompt_unread: usize,
}Expand description
Tally of what record-runs did across the dispatch’s tasks.
Fields§
§recorded: usize§skipped_existing: usize§skipped_no_final_message: usize§missing_transcript: usize§skipped_prompt_unread: usizeImplementations§
Source§impl RecordRunsResult
impl RecordRunsResult
Sourcepub fn transcript_warning(&self, harness: Harness) -> Option<String>
pub fn transcript_warning(&self, harness: Harness) -> Option<String>
A loud, actionable warning when runs were recorded from final-message.md
but their transcripts didn’t link — leaving tool_invocations/tokens/
duration empty so transcript_check assertions silently grade
unverifiable. None when every run matched its transcript. The hint names
the per-task events file the harness CLI was expected to write.
Sourcepub fn prompt_unread_warning(&self) -> Option<String>
pub fn prompt_unread_warning(&self) -> Option<String>
A loud, actionable warning when one or more dispatches were excluded
because their transcript shows a failed read of the dispatch prompt — the
agent never received its instructions, so the result is a no-op, not data.
None when none were flagged.
Trait Implementations§
Source§impl Clone for RecordRunsResult
impl Clone for RecordRunsResult
Source§fn clone(&self) -> RecordRunsResult
fn clone(&self) -> RecordRunsResult
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 moreSource§impl Debug for RecordRunsResult
impl Debug for RecordRunsResult
Source§impl Default for RecordRunsResult
impl Default for RecordRunsResult
Source§fn default() -> RecordRunsResult
fn default() -> RecordRunsResult
Returns the “default value” for a type. Read more
impl Eq for RecordRunsResult
Source§impl PartialEq for RecordRunsResult
impl PartialEq for RecordRunsResult
impl StructuralPartialEq for RecordRunsResult
Auto Trait Implementations§
impl Freeze for RecordRunsResult
impl RefUnwindSafe for RecordRunsResult
impl Send for RecordRunsResult
impl Sync for RecordRunsResult
impl Unpin for RecordRunsResult
impl UnsafeUnpin for RecordRunsResult
impl UnwindSafe for RecordRunsResult
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.