pub enum RecipeControlFlow {
Continue,
Break,
Repeat,
Skip,
Goto(usize),
}Available on crate features
utils and injector only.Expand description
The control flow of a recipe step.
Variants§
Continue
Continue to the next step.
Break
Stop executing the recipe.
Repeat
Repeat the current step.
Skip
Skip the next step.
Goto(usize)
Jump to a specific step.
Auto Trait Implementations§
impl Freeze for RecipeControlFlow
impl RefUnwindSafe for RecipeControlFlow
impl Send for RecipeControlFlow
impl Sync for RecipeControlFlow
impl Unpin for RecipeControlFlow
impl UnwindSafe for RecipeControlFlow
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