[][src]Enum gui::UnhandledEvent

pub enum UnhandledEvent<E> {
    Event(E),
    Custom(Box<dyn Any>),
    Quit,
}

An event that the Ui did not process.

An unhandled event comprises the variants of a UiEvent that are not concerned with addressing.

Variants

Event(E)

An Event that can be handled by a Handleable.

Custom(Box<dyn Any>)

A custom event that can contain arbitrary data.

Quit

A request to quit the application has been made.

Trait Implementations

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

A convenience conversion from a single event into an UnhandledEvent.

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

Auto Trait Implementations

impl<E> !Send for UnhandledEvent<E>

impl<E> !Sync for UnhandledEvent<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.