pub trait Executable {
type Output;
// Required method
fn exec(self) -> impl Future<Output = QueryResult<Self::Output>> + Send;
}Expand description
A query that can be executed.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".