pub struct WorkspaceRunResult {
pub project: WorkspaceProject,
pub result: Option<TestRunResult>,
pub duration: Duration,
pub error: Option<String>,
pub skipped: bool,
}Expand description
Result of running tests in a single workspace project.
Fields§
§project: WorkspaceProject§result: Option<TestRunResult>§duration: Duration§error: Option<String>§skipped: boolTrait Implementations§
Source§impl Clone for WorkspaceRunResult
impl Clone for WorkspaceRunResult
Source§fn clone(&self) -> WorkspaceRunResult
fn clone(&self) -> WorkspaceRunResult
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 moreAuto Trait Implementations§
impl Freeze for WorkspaceRunResult
impl RefUnwindSafe for WorkspaceRunResult
impl Send for WorkspaceRunResult
impl Sync for WorkspaceRunResult
impl Unpin for WorkspaceRunResult
impl UnsafeUnpin for WorkspaceRunResult
impl UnwindSafe for WorkspaceRunResult
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