pub enum FlickKind {
Other,
Forward,
Reverse,
Side,
}Expand description
The kind of flick detected, from the dodge direction (see
[REVERSE_FLICK_MIN_BACKWARD]).
Variants§
Other
No clear dodge direction (e.g. missing dodge torque), or a dodge that is neither clearly forward, backward, nor sideways.
Forward
A front-flip flick: the dodge is forward.
Reverse
A reverse flick: the dodge is a backflip.
Side
A side flick: the dodge is dominated by its sideways component.
Implementations§
Trait Implementations§
impl Copy for FlickKind
impl Eq for FlickKind
impl StructuralPartialEq for FlickKind
Auto Trait Implementations§
impl Freeze for FlickKind
impl RefUnwindSafe for FlickKind
impl Send for FlickKind
impl Sync for FlickKind
impl Unpin for FlickKind
impl UnsafeUnpin for FlickKind
impl UnwindSafe for FlickKind
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