pub enum SkipType {
Equals,
NotEquals,
KeyDown,
KeyUp,
}Expand description
Types of SKIP conditions
Variants§
Equals
Test equality between two registers or a register and a constant value
NotEquals
Test inequality between two registers or a register and a constant value
KeyDown
Test whether a given key is pressed
KeyUp
Test whether a given key is released
Trait Implementations§
impl StructuralPartialEq for SkipType
Auto Trait Implementations§
impl Freeze for SkipType
impl RefUnwindSafe for SkipType
impl Send for SkipType
impl Sync for SkipType
impl Unpin for SkipType
impl UnwindSafe for SkipType
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