1use crate::expression::Expression;
2use crate::query_source::Table;
34/// The `order` method
5///
6/// This trait should not be relied on directly by most apps. Its behavior is
7/// provided by [`QueryDsl`]. However, you may need a where clause on this trait
8/// to call `order` from generic code.
9///
10/// [`QueryDsl`]: crate::QueryDsl
11pub trait OrderDsl<Expr: Expression> {
12/// The type returned by `.order`.
13type Output;
1415/// See the trait documentation.
16fn order(self, expr: Expr) -> Self::Output;
17}
1819impl<T, Expr> OrderDsl<Expr> for T
20where
21Expr: Expression,
22 T: Table,
23 T::Query: OrderDsl<Expr>,
24{
25type Output = <T::Query as OrderDsl<Expr>>::Output;
2627fn order(self, expr: Expr) -> Self::Output {
28self.as_query().order(expr)
29 }
30}
3132/// The `then_order_by` method
33///
34/// This trait should not be relied on directly by most apps. Its behavior is
35/// provided by [`QueryDsl`]. However, you may need a where clause on this trait
36/// to call `then_order_by` from generic code.
37///
38/// [`QueryDsl`]: crate::QueryDsl
39pub trait ThenOrderDsl<Expr> {
40/// The type returned by `.then_order_by`.
41type Output;
4243/// See the trait documentation.
44fn then_order_by(self, expr: Expr) -> Self::Output;
45}
4647impl<T, Expr> ThenOrderDsl<Expr> for T
48where
49Expr: Expression,
50 T: Table,
51 T::Query: ThenOrderDsl<Expr>,
52{
53type Output = <T::Query as ThenOrderDsl<Expr>>::Output;
5455fn then_order_by(self, expr: Expr) -> Self::Output {
56self.as_query().then_order_by(expr)
57 }
58}
5960pub trait ValidOrderingForDistinct<D> {}