pub enum PhysicalInputRecipeAction {
Focus,
Activate,
Toggle,
SetValue,
}Expand description
Semantic intent backed by a physical PTY-input recipe.
Variants§
Focus
Move authoritative application focus to the target.
Activate
Invoke the target’s primary action.
Toggle
Change the target’s checked/toggled state.
SetValue
Replace the target’s editable value.
Trait Implementations§
Source§impl Clone for PhysicalInputRecipeAction
impl Clone for PhysicalInputRecipeAction
Source§fn clone(&self) -> PhysicalInputRecipeAction
fn clone(&self) -> PhysicalInputRecipeAction
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 moreimpl Copy for PhysicalInputRecipeAction
Source§impl Debug for PhysicalInputRecipeAction
impl Debug for PhysicalInputRecipeAction
Source§impl<'de> Deserialize<'de> for PhysicalInputRecipeAction
impl<'de> Deserialize<'de> for PhysicalInputRecipeAction
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 PhysicalInputRecipeAction
impl StructuralPartialEq for PhysicalInputRecipeAction
Auto Trait Implementations§
impl Freeze for PhysicalInputRecipeAction
impl RefUnwindSafe for PhysicalInputRecipeAction
impl Send for PhysicalInputRecipeAction
impl Sync for PhysicalInputRecipeAction
impl Unpin for PhysicalInputRecipeAction
impl UnsafeUnpin for PhysicalInputRecipeAction
impl UnwindSafe for PhysicalInputRecipeAction
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