pub trait Query {
type Output;
// Required method
fn compile(self, dialect: &impl Dialect) -> Result<CompiledQuery>;
}Required Associated Types§
Required Methods§
fn compile(self, dialect: &impl Dialect) -> Result<CompiledQuery>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".