#[non_exhaustive]pub enum CommandAction {
Run(String),
Execute(Count),
}Expand description
Actions for running application commands (e.g. :w or :quit).
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.
Run(String)
Run a command string.
This should update Register::LastCommand.
Execute(Count)
Execute the last CommandType::Command entry n times.
Trait Implementations§
Source§impl Clone for CommandAction
impl Clone for CommandAction
Source§fn clone(&self) -> CommandAction
fn clone(&self) -> CommandAction
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 CommandAction
impl Debug for CommandAction
Source§impl<I: ApplicationInfo> From<CommandAction> for Action<I>
impl<I: ApplicationInfo> From<CommandAction> for Action<I>
Source§fn from(act: CommandAction) -> Self
fn from(act: CommandAction) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CommandAction
impl PartialEq for CommandAction
impl Eq for CommandAction
impl StructuralPartialEq for CommandAction
Auto Trait Implementations§
impl Freeze for CommandAction
impl RefUnwindSafe for CommandAction
impl Send for CommandAction
impl Sync for CommandAction
impl Unpin for CommandAction
impl UnwindSafe for CommandAction
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