pub struct ResultCounts {
pub errored: i64,
pub failed: i64,
pub passed: i64,
pub total: i64,
}Expand description
Counters summarizing the outcomes of the evaluation run.
Fields§
§errored: i64Number of output items that resulted in an error.
failed: i64Number of output items that failed to pass the evaluation.
passed: i64Number of output items that passed the evaluation.
total: i64Total number of executed output items.
Trait Implementations§
Source§impl Clone for ResultCounts
impl Clone for ResultCounts
Source§fn clone(&self) -> ResultCounts
fn clone(&self) -> ResultCounts
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 ResultCounts
impl Debug for ResultCounts
Source§impl<'de> Deserialize<'de> for ResultCounts
impl<'de> Deserialize<'de> for ResultCounts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResultCounts
impl RefUnwindSafe for ResultCounts
impl Send for ResultCounts
impl Sync for ResultCounts
impl Unpin for ResultCounts
impl UnsafeUnpin for ResultCounts
impl UnwindSafe for 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