pub struct AggregatedResultsAnalysis {
pub duration: Option<String>,
pub not_reported_results_by_outcome: Option<Value>,
pub previous_context: Option<TestResultsContext>,
pub results_by_outcome: Option<Value>,
pub results_difference: Option<AggregatedResultsDifference>,
pub run_summary_by_outcome: Option<Value>,
pub run_summary_by_state: Option<Value>,
pub total_tests: Option<i32>,
}
Expand description
Fields§
§duration: Option<String>
§not_reported_results_by_outcome: Option<Value>
§previous_context: Option<TestResultsContext>
§results_by_outcome: Option<Value>
§results_difference: Option<AggregatedResultsDifference>
§run_summary_by_outcome: Option<Value>
§run_summary_by_state: Option<Value>
§total_tests: Option<i32>
Implementations§
Trait Implementations§
source§impl Clone for AggregatedResultsAnalysis
impl Clone for AggregatedResultsAnalysis
source§fn clone(&self) -> AggregatedResultsAnalysis
fn clone(&self) -> AggregatedResultsAnalysis
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 AggregatedResultsAnalysis
impl Debug for AggregatedResultsAnalysis
source§impl Default for AggregatedResultsAnalysis
impl Default for AggregatedResultsAnalysis
source§fn default() -> AggregatedResultsAnalysis
fn default() -> AggregatedResultsAnalysis
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AggregatedResultsAnalysis
impl<'de> Deserialize<'de> for AggregatedResultsAnalysis
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 AggregatedResultsAnalysis
impl PartialEq for AggregatedResultsAnalysis
source§fn eq(&self, other: &AggregatedResultsAnalysis) -> bool
fn eq(&self, other: &AggregatedResultsAnalysis) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AggregatedResultsAnalysis
Auto Trait Implementations§
impl RefUnwindSafe for AggregatedResultsAnalysis
impl Send for AggregatedResultsAnalysis
impl Sync for AggregatedResultsAnalysis
impl Unpin for AggregatedResultsAnalysis
impl UnwindSafe for AggregatedResultsAnalysis
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