pub trait Command{
type Response: Send + Sync + 'static;
}Expand description
Command metadata used by generated mediators.
Most users should derive this with #[derive(MediCommand)] from the
medi-rs-macros crate.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".