pub trait ToConstructQuery {
// Required method
fn to_query_with_binding(binding_variable: Variable) -> ConstructQuery;
// Provided method
fn to_query() -> ConstructQuery { ... }
}Required Methods§
fn to_query_with_binding(binding_variable: Variable) -> ConstructQuery
Provided Methods§
fn to_query() -> ConstructQuery
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.