Enum webrender_api::ScrollEventPhase
[−]
[src]
pub enum ScrollEventPhase {
Start,
Move(bool),
End,
}Variants
StartThe user started scrolling.
Move(bool)The user performed a scroll. The Boolean flag indicates whether the user's fingers are down, if a touchpad is in use. (If false, the event is a touchpad fling.)
EndThe user ended scrolling.
Trait Implementations
impl Clone for ScrollEventPhase[src]
fn clone(&self) -> ScrollEventPhase[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for ScrollEventPhase[src]
impl Debug for ScrollEventPhase[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for ScrollEventPhase[src]
fn eq(&self, __arg_0: &ScrollEventPhase) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ScrollEventPhase) -> bool[src]
This method tests for !=.