Module diesel::query_dsl::methods[][src]

Expand description

The traits used by QueryDsl.

Each trait in this module represents exactly one method from QueryDsl. Apps should general rely on QueryDsl directly, rather than these traits. However, generic code may need to include a where clause that references these traits.

Traits

BoxedDsl

The into_boxed method

DistinctDsl

The distinct method

DistinctOnDsl

The distinct_on method

ExecuteDsl

The execute method

FilterDsl

The filter method

FindDsl

The find method

LimitDsl

The limit method

LoadQuery

The load method

LockingDsl

Methods related to locking select statements

ModifyLockDsl

Methods related to modifiers on locking select statements

OffsetDsl

The offset method

OrFilterDsl

The or_filter method

OrderDsl

The order method

SelectDsl

The select method

SelectNullableDsl

The nullable method

SingleValueDsl

The single_value method

ThenOrderDsl

The then_order_by method