pub trait Message:
'static
+ Debug
+ Send
+ Sync { }Expand description
Trait representing a message in the system.
Messages must be 'static to allow for type-erased storage and must implement Copy,
Debug, Send, and Sync to ensure they can be safely shared across threads and easily debugged.