pub struct TestRunStatistic {
pub run: Option<ShallowReference>,
pub run_statistics: Vec<RunStatistic>,
}
Expand description
Test run statistics.
Fields§
§run: Option<ShallowReference>
An abstracted reference to some other resource. This class is used to provide the build data contracts with a uniform way to reference other resources in a way that provides easy traversal through links.
run_statistics: Vec<RunStatistic>
Implementations§
Trait Implementations§
source§impl Clone for TestRunStatistic
impl Clone for TestRunStatistic
source§fn clone(&self) -> TestRunStatistic
fn clone(&self) -> TestRunStatistic
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 TestRunStatistic
impl Debug for TestRunStatistic
source§impl Default for TestRunStatistic
impl Default for TestRunStatistic
source§fn default() -> TestRunStatistic
fn default() -> TestRunStatistic
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestRunStatistic
impl<'de> Deserialize<'de> for TestRunStatistic
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 TestRunStatistic
impl PartialEq for TestRunStatistic
source§fn eq(&self, other: &TestRunStatistic) -> bool
fn eq(&self, other: &TestRunStatistic) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestRunStatistic
impl Serialize for TestRunStatistic
impl StructuralPartialEq for TestRunStatistic
Auto Trait Implementations§
impl Freeze for TestRunStatistic
impl RefUnwindSafe for TestRunStatistic
impl Send for TestRunStatistic
impl Sync for TestRunStatistic
impl Unpin for TestRunStatistic
impl UnwindSafe for TestRunStatistic
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