pub struct RunSummaryModel {
pub duration: Option<i64>,
pub result_count: Option<i32>,
pub test_outcome: Option<TestOutcome>,
}Expand description
Run summary for each output type of test.
Fields§
§duration: Option<i64>Total time taken in milliseconds.
result_count: Option<i32>Number of results for Outcome TestOutcome
test_outcome: Option<TestOutcome>Summary is based on outcome
Implementations§
Trait Implementations§
Source§impl Clone for RunSummaryModel
impl Clone for RunSummaryModel
Source§fn clone(&self) -> RunSummaryModel
fn clone(&self) -> RunSummaryModel
Returns a duplicate 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 RunSummaryModel
impl Debug for RunSummaryModel
Source§impl Default for RunSummaryModel
impl Default for RunSummaryModel
Source§fn default() -> RunSummaryModel
fn default() -> RunSummaryModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunSummaryModel
impl<'de> Deserialize<'de> for RunSummaryModel
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 RunSummaryModel
impl PartialEq for RunSummaryModel
Source§impl Serialize for RunSummaryModel
impl Serialize for RunSummaryModel
impl StructuralPartialEq for RunSummaryModel
Auto Trait Implementations§
impl Freeze for RunSummaryModel
impl RefUnwindSafe for RunSummaryModel
impl Send for RunSummaryModel
impl Sync for RunSummaryModel
impl Unpin for RunSummaryModel
impl UnwindSafe for RunSummaryModel
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