pub enum ScrollingPhase {
Started,
Stationary,
Changed,
Ended,
}
Expand description
The scrolling phase for a scroll or flick gesture.
Variants§
Started
An event phase has begun.
Stationary
An event phase is in progress but hasn’t moved since the previous event.
Changed
An event phase has changed.
Ended
The event phase ended or cancelled.
Trait Implementations§
Source§impl Debug for ScrollingPhase
impl Debug for ScrollingPhase
Source§impl PartialEq for ScrollingPhase
impl PartialEq for ScrollingPhase
Source§impl PartialOrd for ScrollingPhase
impl PartialOrd for ScrollingPhase
impl StructuralPartialEq for ScrollingPhase
Auto Trait Implementations§
impl Freeze for ScrollingPhase
impl RefUnwindSafe for ScrollingPhase
impl Send for ScrollingPhase
impl Sync for ScrollingPhase
impl Unpin for ScrollingPhase
impl UnwindSafe for ScrollingPhase
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