[][src]Enum cursive::event::MouseEvent

pub enum MouseEvent {
    Press(MouseButton),
    Release(MouseButton),
    Hold(MouseButton),
    WheelUp,
    WheelDown,
}

Represents a possible event sent by the mouse.

Variants

Press(MouseButton)

A button was pressed.

Release(MouseButton)

A button was released.

Hold(MouseButton)

A button is being held.

WheelUp

The wheel was moved up.

WheelDown

The wheel was moved down.

Methods

impl MouseEvent[src]

pub fn button(self) -> Option<MouseButton>[src]

Returns the button used by this event, if any.

Returns None if self is WheelUp or WheelDown.

pub fn grabs_focus(self) -> bool[src]

Returns true if self is an event that can grab focus.

This includes Press, WheelUp and WheelDown.

Trait Implementations

impl Copy for MouseEvent[src]

impl PartialEq<MouseEvent> for MouseEvent[src]

impl Clone for MouseEvent[src]

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

Performs copy-assignment from source. Read more

impl Eq for MouseEvent[src]

impl Debug for MouseEvent[src]

impl Hash for MouseEvent[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for MouseEvent

impl Sync for MouseEvent

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T[src]