pub enum StepExecution {
Continue {
value: Option<Box<dyn Any>>,
},
Skipped {
message: Option<String>,
},
}Expand description
Outcome produced by step wrappers.
Variants§
Continue
The step executed successfully and may provide a value for later steps.
Skipped
The step requested that the scenario should be skipped.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StepExecution
impl !RefUnwindSafe for StepExecution
impl !Send for StepExecution
impl !Sync for StepExecution
impl Unpin for StepExecution
impl !UnwindSafe for StepExecution
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