Struct conrod::MouseScroll [] [src]

pub struct MouseScroll {
    pub x: f64,
    pub y: f64,
}

The amount of scrolling that has occurred since the last render event.

Fields

x: f64

Scrolling across the x axis.

y: f64

Scrolling across the y axis.

Trait Implementations

impl Debug for Scroll
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Scroll
[src]

fn clone(&self) -> Scroll

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Scroll
[src]