pub enum StepAction {
Run,
Skip,
Abort,
RunAll,
}Expand description
User action for step mode.
Variants§
Run
Execute this command
Skip
Skip this command
Abort
Abort the entire replay
RunAll
Run all remaining commands without prompting
Trait Implementations§
Source§impl Clone for StepAction
impl Clone for StepAction
Source§fn clone(&self) -> StepAction
fn clone(&self) -> StepAction
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 StepAction
impl Debug for StepAction
Source§impl PartialEq for StepAction
impl PartialEq for StepAction
impl Copy for StepAction
impl Eq for StepAction
impl StructuralPartialEq for StepAction
Auto Trait Implementations§
impl Freeze for StepAction
impl RefUnwindSafe for StepAction
impl Send for StepAction
impl Sync for StepAction
impl Unpin for StepAction
impl UnwindSafe for StepAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.