pub struct TestRunResult {
pub duration_ms: u64,
pub error: Option<TestRunError>,
pub report: Option<TestReport>,
}Fields§
§duration_ms: u64§error: Option<TestRunError>§report: Option<TestReport>Trait Implementations§
Source§impl Clone for TestRunResult
impl Clone for TestRunResult
Source§fn clone(&self) -> TestRunResult
fn clone(&self) -> TestRunResult
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 TestRunResult
impl Debug for TestRunResult
Source§impl<'de> Deserialize<'de> for TestRunResult
impl<'de> Deserialize<'de> for TestRunResult
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
Auto Trait Implementations§
impl Freeze for TestRunResult
impl RefUnwindSafe for TestRunResult
impl Send for TestRunResult
impl Sync for TestRunResult
impl Unpin for TestRunResult
impl UnsafeUnpin for TestRunResult
impl UnwindSafe for TestRunResult
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