pub trait Message: Send + 'static {
type Result: Send + 'static;
}Expand description
Types that can be sent between actors.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".