[][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: Debug> Debug for UiEvent<E>[src]

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

A convenience conversion from Event to UiEvent.

Auto Trait Implementations

impl<E> !RefUnwindSafe for UiEvent<E>

impl<E> !Send for UiEvent<E>

impl<E> !Sync for UiEvent<E>

impl<E> Unpin for UiEvent<E> where
    E: Unpin

impl<E> !UnwindSafe for UiEvent<E>

Blanket Implementations

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

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

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

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

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.