pub trait Query<T> { // Required method fn into_sql(self) -> String; }
Trait implemented by all query builder types. Use impl Query<T> as a return type for view functions and helpers.
impl Query<T>