pub enum PhysicalInputRecipeStep {
Press {
key: String,
},
InsertActionValue,
}Expand description
One data-only recipe step; no framework callback can cross this boundary.
Variants§
Press
Press one terminal key through the real PTY input device.
InsertActionValue
Insert the value supplied to the current semantic action at execution time.
Trait Implementations§
Source§impl Clone for PhysicalInputRecipeStep
impl Clone for PhysicalInputRecipeStep
Source§fn clone(&self) -> PhysicalInputRecipeStep
fn clone(&self) -> PhysicalInputRecipeStep
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 PhysicalInputRecipeStep
impl Debug for PhysicalInputRecipeStep
Source§impl<'de> Deserialize<'de> for PhysicalInputRecipeStep
impl<'de> Deserialize<'de> for PhysicalInputRecipeStep
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
impl Eq for PhysicalInputRecipeStep
Source§impl PartialEq for PhysicalInputRecipeStep
impl PartialEq for PhysicalInputRecipeStep
Source§impl Serialize for PhysicalInputRecipeStep
impl Serialize for PhysicalInputRecipeStep
impl StructuralPartialEq for PhysicalInputRecipeStep
Auto Trait Implementations§
impl Freeze for PhysicalInputRecipeStep
impl RefUnwindSafe for PhysicalInputRecipeStep
impl Send for PhysicalInputRecipeStep
impl Sync for PhysicalInputRecipeStep
impl Unpin for PhysicalInputRecipeStep
impl UnsafeUnpin for PhysicalInputRecipeStep
impl UnwindSafe for PhysicalInputRecipeStep
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