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
//! Core event system traits and types
use ;
use fmt;
/// Core trait that all events must implement
///
/// This trait provides the foundation for type-safe event dispatch.
/// All event types must implement this trait to be used with the dispatcher.
///
/// # Example
///
/// ```rust
/// use mod_events::Event;
///
/// #[derive(Debug, Clone)]
/// struct UserRegistered {
/// user_id: u64,
/// email: String,
/// }
///
/// impl Event for UserRegistered {
/// fn as_any(&self) -> &dyn std::any::Any {
/// self
/// }
/// }
/// ```
/// Unique identifier for event listeners
///
/// This is returned when subscribing to events and can be used
/// to unsubscribe specific listeners later.