pub enum OnStepFailure {
Continue,
AbortIteration,
}Expand description
Controls what happens when a step fails within a scenario iteration.
Variants§
Continue
Continue executing remaining steps in the iteration even after a failure.
AbortIteration
Abort the current iteration and skip remaining steps on any step failure.
Trait Implementations§
Source§impl Clone for OnStepFailure
impl Clone for OnStepFailure
Source§fn clone(&self) -> OnStepFailure
fn clone(&self) -> OnStepFailure
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 OnStepFailure
impl Debug for OnStepFailure
Source§impl Default for OnStepFailure
impl Default for OnStepFailure
Source§fn default() -> OnStepFailure
fn default() -> OnStepFailure
Returns the “default value” for a type. Read more
impl Copy for OnStepFailure
Auto Trait Implementations§
impl Freeze for OnStepFailure
impl RefUnwindSafe for OnStepFailure
impl Send for OnStepFailure
impl Sync for OnStepFailure
impl Unpin for OnStepFailure
impl UnsafeUnpin for OnStepFailure
impl UnwindSafe for OnStepFailure
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