pub struct TestResultSummary {
pub aggregated_results_analysis: Option<AggregatedResultsAnalysis>,
pub no_config_runs_count: Option<i32>,
pub team_project: Option<TeamProjectReference>,
pub test_failures: Option<TestFailuresAnalysis>,
pub test_results_context: Option<TestResultsContext>,
pub total_runs_count: Option<i32>,
}
Expand description
Fields§
§aggregated_results_analysis: Option<AggregatedResultsAnalysis>
§no_config_runs_count: Option<i32>
§team_project: Option<TeamProjectReference>
§test_failures: Option<TestFailuresAnalysis>
§test_results_context: Option<TestResultsContext>
§total_runs_count: Option<i32>
Implementations§
Trait Implementations§
source§impl Clone for TestResultSummary
impl Clone for TestResultSummary
source§fn clone(&self) -> TestResultSummary
fn clone(&self) -> TestResultSummary
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 TestResultSummary
impl Debug for TestResultSummary
source§impl Default for TestResultSummary
impl Default for TestResultSummary
source§fn default() -> TestResultSummary
fn default() -> TestResultSummary
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestResultSummary
impl<'de> Deserialize<'de> for TestResultSummary
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 TestResultSummary
impl PartialEq for TestResultSummary
source§fn eq(&self, other: &TestResultSummary) -> bool
fn eq(&self, other: &TestResultSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestResultSummary
impl Serialize for TestResultSummary
impl StructuralPartialEq for TestResultSummary
Auto Trait Implementations§
impl RefUnwindSafe for TestResultSummary
impl Send for TestResultSummary
impl Sync for TestResultSummary
impl Unpin for TestResultSummary
impl UnwindSafe for TestResultSummary
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