pub struct WorkspaceReport {
pub results: Vec<WorkspaceRunResult>,
pub total_duration: Duration,
pub projects_found: usize,
pub projects_run: usize,
pub projects_passed: usize,
pub projects_failed: usize,
pub projects_skipped: usize,
pub total_tests: usize,
pub total_passed: usize,
pub total_failed: usize,
}Expand description
Aggregated results across all workspace projects.
Fields§
§results: Vec<WorkspaceRunResult>§total_duration: Duration§projects_found: usize§projects_run: usize§projects_passed: usize§projects_failed: usize§projects_skipped: usize§total_tests: usize§total_passed: usize§total_failed: usizeTrait Implementations§
Source§impl Clone for WorkspaceReport
impl Clone for WorkspaceReport
Source§fn clone(&self) -> WorkspaceReport
fn clone(&self) -> WorkspaceReport
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 WorkspaceReport
impl RefUnwindSafe for WorkspaceReport
impl Send for WorkspaceReport
impl Sync for WorkspaceReport
impl Unpin for WorkspaceReport
impl UnsafeUnpin for WorkspaceReport
impl UnwindSafe for WorkspaceReport
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