[][src]Struct winconsole::input::MouseEvent

pub struct MouseEvent {
    pub button: u8,
    pub key_code: KeyCode,
    pub modifiers: ControlKeyState,
    pub position: Vector2<u16>,
    pub pressed: bool,
}

Represents an input event which occurred on a mouse button.

Fields

button: u8

The mouse button the event occurred on.

key_code: KeyCode

The KeyCode of the mouse button which the event occurred on.

modifiers: ControlKeyState

A ControlKeyState object describing the state of control keys.

position: Vector2<u16>

The character cell the event occurred on.

pressed: bool

Is the mouse button pressed?

Methods

impl MouseEvent[src]

pub fn new() -> MouseEvent[src]

Returns an empty MouseEvent.

Trait Implementations

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 Into<InputEvent> for MouseEvent[src]

impl Copy for MouseEvent[src]

impl Debug for MouseEvent[src]

impl Serialize for MouseEvent[src]

impl<'de> Deserialize<'de> for MouseEvent[src]

Auto Trait Implementations

impl Send for MouseEvent

impl Sync for MouseEvent

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]