pub trait Query:
Send
+ Sync
+ 'static {
type Response: Send + Sync + 'static;
}Expand description
A typed bail/query event.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".