pub trait IntoQuery<T, DB>
where
T: diesel::Table + diesel::query_builder::AsQuery,
T::Query: diesel::query_dsl::methods::BoxedDsl<'static, DB>,
DB: diesel::backend::Backend,
{
fn into_query(self) -> diesel::helper_types::IntoBoxed<'static, T, DB>;
}
#[cfg(any(feature = "mysql", feature = "postgres", feature = "sqlite"))]
pub use into_query_derive::*;