pub struct SuiteRunResults {
pub version: u32,
pub suite: String,
pub suite_file: String,
pub run_id: String,
pub started_at: String,
pub finished_at: String,
pub output_dir: String,
pub summary: SuiteRunSummary,
pub cases: Vec<SuiteCaseResult>,
}Fields§
§version: u32§suite: String§suite_file: String§run_id: String§started_at: String§finished_at: String§output_dir: String§summary: SuiteRunSummary§cases: Vec<SuiteCaseResult>Implementations§
Trait Implementations§
Source§impl Clone for SuiteRunResults
impl Clone for SuiteRunResults
Source§fn clone(&self) -> SuiteRunResults
fn clone(&self) -> SuiteRunResults
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SuiteRunResults
impl Debug for SuiteRunResults
Source§impl<'de> Deserialize<'de> for SuiteRunResults
impl<'de> Deserialize<'de> for SuiteRunResults
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 SuiteRunResults
impl PartialEq for SuiteRunResults
Source§fn eq(&self, other: &SuiteRunResults) -> bool
fn eq(&self, other: &SuiteRunResults) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SuiteRunResults
impl Serialize for SuiteRunResults
impl Eq for SuiteRunResults
impl StructuralPartialEq for SuiteRunResults
Auto Trait Implementations§
impl Freeze for SuiteRunResults
impl RefUnwindSafe for SuiteRunResults
impl Send for SuiteRunResults
impl Sync for SuiteRunResults
impl Unpin for SuiteRunResults
impl UnsafeUnpin for SuiteRunResults
impl UnwindSafe for SuiteRunResults
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.