pub struct EvalSummary {
pub tasks_read: usize,
pub attempts_written: usize,
pub runner_errors: usize,
pub id_mismatches: usize,
}Expand description
Counts from an eval run.
Fields§
§tasks_read: usizeTasks sent to the runner.
attempts_written: usizeAttempts written to the output.
runner_errors: usizeTasks where the runner errored, timed out, or replied malformed.
id_mismatches: usizeReplies whose task_id did not match the task that was sent.
Trait Implementations§
Source§impl Clone for EvalSummary
impl Clone for EvalSummary
Source§fn clone(&self) -> EvalSummary
fn clone(&self) -> EvalSummary
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 moreimpl Copy for EvalSummary
Source§impl Debug for EvalSummary
impl Debug for EvalSummary
Source§impl Default for EvalSummary
impl Default for EvalSummary
Source§fn default() -> EvalSummary
fn default() -> EvalSummary
Returns the “default value” for a type. Read more
impl Eq for EvalSummary
Source§impl PartialEq for EvalSummary
impl PartialEq for EvalSummary
Source§fn eq(&self, other: &EvalSummary) -> bool
fn eq(&self, other: &EvalSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EvalSummary
Auto Trait Implementations§
impl Freeze for EvalSummary
impl RefUnwindSafe for EvalSummary
impl Send for EvalSummary
impl Sync for EvalSummary
impl Unpin for EvalSummary
impl UnsafeUnpin for EvalSummary
impl UnwindSafe for EvalSummary
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