orsb/src/message.rs

4 lines
117 B
Rust
Raw Normal View History

2020-12-24 11:23:03 -07:00
pub trait Message: 'static + Clone + Send + Sync {}
impl<T> Message for T where T: 'static + Clone + Send + Sync {}