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
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AggregatedResultDetailsByOutcome
Auto Trait Implementations§
impl Freeze for AggregatedResultDetailsByOutcome
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