crb_send/
message.rs

1
2
3
pub trait Message: Send + 'static {}

impl<M> Message for M where M: Send + 'static {}