pub enum WheelDelta {
Lines(f32, f32),
Pixels(f64, f64),
}Expand description
Scroll delta — distinguishes scroll source.
Chrome equivalent: WebMouseWheelEvent::delta_x/y +
has_precise_scrolling_deltas flag.
Mouse wheels produce line deltas (discrete ticks). Trackpads produce pixel deltas (smooth, precise). The distinction matters for scroll behavior — line deltas get multiplied by a line height, pixel deltas are used directly.
Variants§
Lines(f32, f32)
Mouse wheel: discrete line ticks. Positive = scroll up/left.
Chrome: delta_x/y when has_precise_scrolling_deltas is false.
Pixels(f64, f64)
Trackpad: precise pixel offset. Positive = scroll up/left.
Chrome: delta_x/y when has_precise_scrolling_deltas is true.
Implementations§
Trait Implementations§
Source§impl Clone for WheelDelta
impl Clone for WheelDelta
Source§fn clone(&self) -> WheelDelta
fn clone(&self) -> WheelDelta
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 WheelDelta
impl Debug for WheelDelta
Source§impl PartialEq for WheelDelta
impl PartialEq for WheelDelta
impl Copy for WheelDelta
impl StructuralPartialEq for WheelDelta
Auto Trait Implementations§
impl Freeze for WheelDelta
impl RefUnwindSafe for WheelDelta
impl Send for WheelDelta
impl Sync for WheelDelta
impl Unpin for WheelDelta
impl UnsafeUnpin for WheelDelta
impl UnwindSafe for WheelDelta
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
Source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
Source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
Source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert