pub struct RunReport {
pub tests_passed: u32,
pub tests_failed: u32,
pub passed: u32,
pub failed: u32,
pub skipped: u32,
pub details: Vec<StepResult>,
}Expand description
Aggregated results from a scenario run.
Fields§
§tests_passed: u32Number of tests that passed.
tests_failed: u32Number of tests that failed.
passed: u32Number of steps that passed.
failed: u32Number of steps that failed.
skipped: u32Number of steps that were skipped.
details: Vec<StepResult>Per-step details.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunReport
impl RefUnwindSafe for RunReport
impl Send for RunReport
impl Sync for RunReport
impl Unpin for RunReport
impl UnsafeUnpin for RunReport
impl UnwindSafe for RunReport
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