pub struct TestReportSummary {
pub duration_in_nano_seconds: i64,
pub status_counts: HashMap<String, i64>,
pub total: i64,
}
Expand description
Information about a test report.
Fields§
§duration_in_nano_seconds: i64
The number of nanoseconds it took to run all of the test cases in this report.
status_counts: HashMap<String, i64>
A map that contains the number of each type of status returned by the test results in this TestReportSummary
.
total: i64
The number of test cases in this TestReportSummary
. The total includes truncated test cases.
Trait Implementations§
Source§impl Clone for TestReportSummary
impl Clone for TestReportSummary
Source§fn clone(&self) -> TestReportSummary
fn clone(&self) -> TestReportSummary
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 TestReportSummary
impl Debug for TestReportSummary
Source§impl Default for TestReportSummary
impl Default for TestReportSummary
Source§fn default() -> TestReportSummary
fn default() -> TestReportSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestReportSummary
impl<'de> Deserialize<'de> for TestReportSummary
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 TestReportSummary
impl PartialEq for TestReportSummary
impl StructuralPartialEq for TestReportSummary
Auto Trait Implementations§
impl Freeze for TestReportSummary
impl RefUnwindSafe for TestReportSummary
impl Send for TestReportSummary
impl Sync for TestReportSummary
impl Unpin for TestReportSummary
impl UnwindSafe for TestReportSummary
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