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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//! Core [`Event`] trait definition.
//!
//! All events must implement this trait to be publishable on the event bus.
/// Core trait that all events must implement.
///
/// Events must be `Clone + Send + Sync + 'static` so they can be type-erased
/// via `Arc<dyn Any + Send + Sync>` and downcast back to the concrete type
/// in subscriber handlers.
///
/// # Example
///
/// ```ignore
/// #[derive(Clone, Debug)]
/// struct UserCreated {
/// user_id: u64,
/// name: String,
/// }
///
/// impl Event for UserCreated {
/// fn event_name() -> &'static str { "user.created" }
///
/// fn topic() -> &'static str { "user" }
/// }
/// ```