1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
}
}