pub trait Request: Message {
type Response;
}Expand description
Represents a request that can be sent between actors and across nodes.
Never implement it by hand, use the #[message(ret = ...)] macro instead.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.