pub trait Event: Clone {}
pub trait EventHandler<E: Event> {
fn handle(&mut self, event: E);
}
#[cfg(feature = "async")]
#[cfg_attr(feature = "async", async_trait::async_trait)]
pub trait AsyncEventHandler<E: Event> {
async fn handle(&mut self, event: E);
}
impl<E, F> EventHandler<E> for F
where
E: Event,
F: FnMut(E),
{
fn handle(&mut self, event: E) {
self(event)
}
}
#[cfg(feature = "async")]
#[cfg_attr(feature = "async", async_trait::async_trait)]
impl<E, F> AsyncEventHandler<E> for F
where
E: Event + Send + 'static,
F: FnMut(E) -> crate::futures::BoxFuture<'static, ()> + Send,
{
async fn handle(&mut self, event: E) {
self(event).await
}
}