[][src]Enum gui::Event

pub enum Event {
    KeyDown(Key),
    KeyUp(Key),
    Custom(Box<dyn Any>),
}

An event that can be handled by a Handleable.

Variants

KeyDown(Key)

A key was pressed.

A key down event is delivered to the focused widget and it is up to this widget to decide whether the event gets propagated further up.

KeyUp(Key)

A key was released.

A key up event is delivered to the focused widget and it is up to this widget to decide whether the event gets propagated further up.

Custom(Box<dyn Any>)

A custom event that can contain arbitrary data.

Trait Implementations

impl From<Event> for UiEvent[src]

A convenience conversion from Event to UiEvent.

impl From<Event> for MetaEvent[src]

A convenience conversion from Event to MetaEvent.

impl Debug for Event[src]

Auto Trait Implementations

impl !Send for Event

impl !Sync for Event

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.