pub trait IntoQuery<T, DB> where
    T: Table + AsQuery,
    T::Query: BoxedDsl<'static, DB>,
    DB: Backend
{ fn into_query(self) -> IntoBoxed<'static, T, DB>; }
Expand description

Provides the into_query function, which converts the type into a select statement filtering by present fields. T is the table the select statement will filter by.

Required methods

Convert self into a query

Implementors