pub struct 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.
Implementations§
Source§impl ResultCounts
impl ResultCounts
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 · 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
Source§impl PartialEq for ResultCounts
impl PartialEq for ResultCounts
Source§impl Serialize for ResultCounts
impl Serialize for ResultCounts
impl Copy for ResultCounts
impl StructuralPartialEq for ResultCounts
Auto Trait Implementations§
impl Freeze for ResultCounts
impl RefUnwindSafe for ResultCounts
impl Send for ResultCounts
impl Sync for ResultCounts
impl Unpin 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