#[non_exhaustive]pub enum MacroAction {
Execute(Count),
Run(String, Count),
Repeat(Count),
ToggleRecording,
}Expand description
Actions for recording and running macros.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Execute(Count)
Execute the contents of the contextually specified Register n times.
If no register is specified, then this should default to Register::UnnamedMacro.
Run(String, Count)
Run the given macro string n times.
Repeat(Count)
Execute the contents of the previously specified register n times.
ToggleRecording
Start or stop recording a macro.
Trait Implementations§
Source§impl Clone for MacroAction
impl Clone for MacroAction
Source§fn clone(&self) -> MacroAction
fn clone(&self) -> MacroAction
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 MacroAction
impl Debug for MacroAction
Source§impl<I: ApplicationInfo> From<MacroAction> for Action<I>
impl<I: ApplicationInfo> From<MacroAction> for Action<I>
Source§fn from(act: MacroAction) -> Self
fn from(act: MacroAction) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MacroAction
impl PartialEq for MacroAction
impl Eq for MacroAction
impl StructuralPartialEq for MacroAction
Auto Trait Implementations§
impl Freeze for MacroAction
impl RefUnwindSafe for MacroAction
impl Send for MacroAction
impl Sync for MacroAction
impl Unpin for MacroAction
impl UnwindSafe for MacroAction
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