pub struct AggregatedResultDetailsByOutcome {
pub count: Option<i32>,
pub duration: Option<String>,
pub outcome: Option<Outcome>,
pub rerun_result_count: Option<i32>,
}
Expand description
Result deatils for a particular test result outcome.
Fields§
§count: Option<i32>
Number of results for current outcome.
duration: Option<String>
Time taken by results.
outcome: Option<Outcome>
Test result outcome
rerun_result_count: Option<i32>
Number of results on rerun
Implementations§
Trait Implementations§
source§impl Clone for AggregatedResultDetailsByOutcome
impl Clone for AggregatedResultDetailsByOutcome
source§fn clone(&self) -> AggregatedResultDetailsByOutcome
fn clone(&self) -> AggregatedResultDetailsByOutcome
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 Default for AggregatedResultDetailsByOutcome
impl Default for AggregatedResultDetailsByOutcome
source§fn default() -> AggregatedResultDetailsByOutcome
fn default() -> AggregatedResultDetailsByOutcome
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AggregatedResultDetailsByOutcome
impl<'de> Deserialize<'de> for AggregatedResultDetailsByOutcome
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 AggregatedResultDetailsByOutcome
impl PartialEq for AggregatedResultDetailsByOutcome
source§fn eq(&self, other: &AggregatedResultDetailsByOutcome) -> bool
fn eq(&self, other: &AggregatedResultDetailsByOutcome) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AggregatedResultDetailsByOutcome
Auto Trait Implementations§
impl RefUnwindSafe for AggregatedResultDetailsByOutcome
impl Send for AggregatedResultDetailsByOutcome
impl Sync for AggregatedResultDetailsByOutcome
impl Unpin for AggregatedResultDetailsByOutcome
impl UnwindSafe for AggregatedResultDetailsByOutcome
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