Struct conrod::event::Scroll [] [src]

pub struct Scroll {
    pub x: f64,
    pub y: f64,
    pub modifiers: ModifierKey,
}

Holds all the relevant information about a scroll event

Fields

x: f64

The amount of scroll along the x axis.

y: f64

The amount of scroll along the y axis.

modifiers: ModifierKey

Which modifier keys, if any, that were being held down while the scroll occured

Trait Implementations

impl Debug for Scroll
[src]

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

Formats the value using the given formatter.

impl PartialEq for Scroll
[src]

fn eq(&self, __arg_0: &Scroll) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Scroll) -> bool

This method tests for !=.

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]