[−][src]Trait diesel::query_dsl::methods::LoadQuery
The load
method
This trait should not be relied on directly by most apps. Its behavior is
provided by RunQueryDsl
. However, you may need a where clause on this trait
to call load
from generic code.
Required methods
fn internal_load(self, conn: &Conn) -> QueryResult<Vec<U>>
Load this query
Implementors
impl<Conn, T> LoadQuery<Conn, T> for SqlQuery where
Conn: Connection,
T: QueryableByName<Conn::Backend>,
[src]
Conn: Connection,
T: QueryableByName<Conn::Backend>,
fn internal_load(self, conn: &Conn) -> QueryResult<Vec<T>>
[src]
impl<Conn, T, U> LoadQuery<Conn, U> for T where
Conn: Connection,
Conn::Backend: HasSqlType<T::SqlType>,
T: AsQuery + RunQueryDsl<Conn>,
T::Query: QueryFragment<Conn::Backend> + QueryId,
U: Queryable<T::SqlType, Conn::Backend>,
[src]
Conn: Connection,
Conn::Backend: HasSqlType<T::SqlType>,
T: AsQuery + RunQueryDsl<Conn>,
T::Query: QueryFragment<Conn::Backend> + QueryId,
U: Queryable<T::SqlType, Conn::Backend>,