pub trait Event:
Send
+ Sync
+ 'static { }Expand description
Trait for events. Implement this on your event structs.
ⓘ
struct UserCreated { pub user_id: i64, pub email: String }
impl Event for UserCreated {}