[][src]Trait revent::Event

pub trait Event: Any {
    fn as_any(&self) -> &dyn Any;
}

A generic event. Implemented for all types.

Required methods

fn as_any(&self) -> &dyn Any

Get the reference to this events Any.

Loading content...

Implementors

impl<T: Any> Event for T[src]

Loading content...