pub struct EvalRun_ResultCounts {
pub total: i64,
pub errored: i64,
pub failed: i64,
pub passed: i64,
}
Expand description
Counters summarizing the outcomes of the evaluation run.
Fields§
§total: i64
Total number of executed output items.
errored: i64
Number of output items that resulted in an error.
failed: i64
Number of output items that failed to pass the evaluation.
passed: i64
Number of output items that passed the evaluation.
Trait Implementations§
Source§impl Clone for EvalRun_ResultCounts
impl Clone for EvalRun_ResultCounts
Source§fn clone(&self) -> EvalRun_ResultCounts
fn clone(&self) -> EvalRun_ResultCounts
Returns a duplicate of the value. Read more
1.0.0 · 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 EvalRun_ResultCounts
impl Debug for EvalRun_ResultCounts
Source§impl Default for EvalRun_ResultCounts
impl Default for EvalRun_ResultCounts
Source§fn default() -> EvalRun_ResultCounts
fn default() -> EvalRun_ResultCounts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EvalRun_ResultCounts
impl RefUnwindSafe for EvalRun_ResultCounts
impl Send for EvalRun_ResultCounts
impl Sync for EvalRun_ResultCounts
impl Unpin for EvalRun_ResultCounts
impl UnwindSafe for EvalRun_ResultCounts
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