pub trait ReducerProcessSend<Item>: ReducerSend<Item, Done = Self::Done> {
type Done: ProcessSend + 'static;
}Required Associated Types§
type Done: ProcessSend + 'static
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".