Trait diesel::query_dsl::methods::LoadQuery[][src]

pub trait LoadQuery<Conn, U>: RunQueryDsl<Conn> {
    fn internal_load(self, conn: &Conn) -> QueryResult<Vec<U>>;
}
Expand description

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

Load this query

Implementors