1pub use mm1_proc_macros::message; 2 3pub trait Message: Send + 'static {} 4 5impl<M> Message for M where M: Send + 'static {}