pub struct ResultsSummaryByOutcome {
pub aggregated_result_details_by_outcome: Option<Value>,
pub duration: Option<String>,
pub not_reported_test_count: Option<i32>,
pub total_test_count: Option<i32>,
}
Expand description
Result summary by the outcome of test results.
Fields§
§aggregated_result_details_by_outcome: Option<Value>
Aggregated result details for each test result outcome.
duration: Option<String>
Time taken by results.
not_reported_test_count: Option<i32>
Total number of not reported test results.
total_test_count: Option<i32>
Total number of test results. (It includes NotImpacted test results as well which need to exclude while calculating pass/fail test result percentage).
Implementations§
Trait Implementations§
source§impl Clone for ResultsSummaryByOutcome
impl Clone for ResultsSummaryByOutcome
source§fn clone(&self) -> ResultsSummaryByOutcome
fn clone(&self) -> ResultsSummaryByOutcome
Returns a copy 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 ResultsSummaryByOutcome
impl Debug for ResultsSummaryByOutcome
source§impl Default for ResultsSummaryByOutcome
impl Default for ResultsSummaryByOutcome
source§fn default() -> ResultsSummaryByOutcome
fn default() -> ResultsSummaryByOutcome
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ResultsSummaryByOutcome
impl<'de> Deserialize<'de> for ResultsSummaryByOutcome
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 ResultsSummaryByOutcome
impl PartialEq for ResultsSummaryByOutcome
source§fn eq(&self, other: &ResultsSummaryByOutcome) -> bool
fn eq(&self, other: &ResultsSummaryByOutcome) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ResultsSummaryByOutcome
impl Serialize for ResultsSummaryByOutcome
impl StructuralPartialEq for ResultsSummaryByOutcome
Auto Trait Implementations§
impl RefUnwindSafe for ResultsSummaryByOutcome
impl Send for ResultsSummaryByOutcome
impl Sync for ResultsSummaryByOutcome
impl Unpin for ResultsSummaryByOutcome
impl UnwindSafe for ResultsSummaryByOutcome
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