4 lines
117 B
Rust
4 lines
117 B
Rust
|
pub trait Message: 'static + Clone + Send + Sync {}
|
||
|
|
||
|
impl<T> Message for T where T: 'static + Clone + Send + Sync {}
|