Trait robots::actors::Message
[−]
[src]
pub trait Message: Clone + Send + Sync + 'static + Any { }
Trait to be implemented by messages, this is automatically given if a struct is
already Clone + Send + Sync + 'static + Any
.