pub enum RecipeStep {
Set {
set: BTreeMap<String, Value>,
instance: Option<String>,
},
Step {
step: StepSpec,
instance: Option<String>,
},
Print {
print: PrintSpec,
instance: Option<String>,
},
Speed {
speed: f64,
instance: Option<String>,
},
Reset {
reset: ResetSpec,
instance: Option<String>,
},
Sleep {
sleep: u64,
},
For {
for: ForSpec,
instance: Option<String>,
},
Assert {
assert: AssertSpec,
},
}Variants§
Trait Implementations§
Source§impl Clone for RecipeStep
impl Clone for RecipeStep
Source§fn clone(&self) -> RecipeStep
fn clone(&self) -> RecipeStep
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 moreSource§impl Debug for RecipeStep
impl Debug for RecipeStep
Source§impl<'de> Deserialize<'de> for RecipeStep
impl<'de> Deserialize<'de> for RecipeStep
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RecipeStep
impl RefUnwindSafe for RecipeStep
impl Send for RecipeStep
impl Sync for RecipeStep
impl Unpin for RecipeStep
impl UnsafeUnpin for RecipeStep
impl UnwindSafe for RecipeStep
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