pub enum WatchAction {
RunAll,
RunFailed,
Quit,
Continue,
ClearAndRun,
}Expand description
Actions the user can perform in watch mode.
Variants§
RunAll
Re-run all tests.
RunFailed
Re-run only failed tests.
Quit
Quit watch mode.
Continue
No action (continue waiting).
ClearAndRun
Clear screen and re-run.
Trait Implementations§
Source§impl Clone for WatchAction
impl Clone for WatchAction
Source§fn clone(&self) -> WatchAction
fn clone(&self) -> WatchAction
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 WatchAction
impl Debug for WatchAction
Source§impl PartialEq for WatchAction
impl PartialEq for WatchAction
impl Copy for WatchAction
impl Eq for WatchAction
impl StructuralPartialEq for WatchAction
Auto Trait Implementations§
impl Freeze for WatchAction
impl RefUnwindSafe for WatchAction
impl Send for WatchAction
impl Sync for WatchAction
impl Unpin for WatchAction
impl UnsafeUnpin for WatchAction
impl UnwindSafe for WatchAction
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.