[][src]Enum gui::UiEvent

pub enum UiEvent<E> {
    Event(E),
    Custom(Box<dyn Any>),
    Directed(IdBox<dyn Any>),
    Returnable(IdIdBox<dyn Any>),
    Quit,
}

An event that the Ui can process.

Variants

Event(E)

An Event that can be handled by a Handleable.

Custom(Box<dyn Any>)

A custom event that can contain arbitrary data.

Directed(IdBox<dyn Any>)

A custom event directed to a certain widget.

This custom event is destined for a particular widget, described by the given Id. That is the only widget that will receive the event.

Returnable(IdIdBox<dyn Any>)

A custom event that is guaranteed to be returned back to the issuer. The first Id represents the source (i.e., the widget the event will be returned to), while the second one identifies the destination (the widget actually "handling" the event).

Quit

A request to quit the application has been made.

Trait Implementations

impl<E> From<E> for UiEvent<E>[src]

A convenience conversion from Event to UiEvent.

impl<E: Debug> Debug for UiEvent<E>[src]

Auto Trait Implementations

impl<E> !Send for UiEvent<E>

impl<E> !Sync for UiEvent<E>

Blanket Implementations

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

impl<T> From for 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.