pub struct TestSuiteRunTestResult {
pub test: TestSuiteTestVoice,
pub attempts: Vec<TestSuiteRunTestAttempt>,
}
Fields§
§test: TestSuiteTestVoice
§attempts: Vec<TestSuiteRunTestAttempt>
These are the attempts made for this test.
Implementations§
Source§impl TestSuiteRunTestResult
impl TestSuiteRunTestResult
pub fn new( test: TestSuiteTestVoice, attempts: Vec<TestSuiteRunTestAttempt>, ) -> TestSuiteRunTestResult
Trait Implementations§
Source§impl Clone for TestSuiteRunTestResult
impl Clone for TestSuiteRunTestResult
Source§fn clone(&self) -> TestSuiteRunTestResult
fn clone(&self) -> TestSuiteRunTestResult
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TestSuiteRunTestResult
impl Debug for TestSuiteRunTestResult
Source§impl Default for TestSuiteRunTestResult
impl Default for TestSuiteRunTestResult
Source§fn default() -> TestSuiteRunTestResult
fn default() -> TestSuiteRunTestResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestSuiteRunTestResult
impl<'de> Deserialize<'de> for TestSuiteRunTestResult
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 TestSuiteRunTestResult
impl PartialEq for TestSuiteRunTestResult
Source§impl Serialize for TestSuiteRunTestResult
impl Serialize for TestSuiteRunTestResult
impl StructuralPartialEq for TestSuiteRunTestResult
Auto Trait Implementations§
impl Freeze for TestSuiteRunTestResult
impl RefUnwindSafe for TestSuiteRunTestResult
impl Send for TestSuiteRunTestResult
impl Sync for TestSuiteRunTestResult
impl Unpin for TestSuiteRunTestResult
impl UnwindSafe for TestSuiteRunTestResult
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