1use crate::dsl;
2#[cfg(feature = "postgres_backend")]
3use crate::expression::SelectableExpression;
4use crate::expression::TypedExpressionType;
5use crate::expression::ValidGrouping;
6use crate::query_builder::FromClause;
7use crate::query_builder::{AsQuery, SelectStatement};
8use crate::query_source::Table;
9use crate::Expression;
1011/// The `distinct` method
12///
13/// This trait should not be relied on directly by most apps. Its behavior is
14/// provided by [`QueryDsl`]. However, you may need a where clause on this trait
15/// to call `distinct` from generic code.
16///
17/// [`QueryDsl`]: crate::QueryDsl
18pub trait DistinctDsl {
19/// The type returned by `.distinct`
20type Output;
2122/// See the trait documentation.
23fn distinct(self) -> dsl::Distinct<Self>;
24}
2526impl<T> DistinctDsl for T
27where
28T: Table + AsQuery<Query = SelectStatement<FromClause<T>>>,
29 T::DefaultSelection: Expression<SqlType = T::SqlType> + ValidGrouping<()>,
30 T::SqlType: TypedExpressionType,
31{
32type Output = dsl::Distinct<SelectStatement<FromClause<T>>>;
3334fn distinct(self) -> dsl::Distinct<SelectStatement<FromClause<T>>> {
35self.as_query().distinct()
36 }
37}
3839/// The `distinct_on` method
40///
41/// This trait should not be relied on directly by most apps. Its behavior is
42/// provided by [`QueryDsl`]. However, you may need a where clause on this trait
43/// to call `distinct_on` from generic code.
44///
45/// [`QueryDsl`]: crate::QueryDsl
46#[cfg(feature = "postgres_backend")]
47pub trait DistinctOnDsl<Selection> {
48/// The type returned by `.distinct_on`
49type Output;
5051/// See the trait documentation
52fn distinct_on(self, selection: Selection) -> dsl::DistinctOn<Self, Selection>;
53}
5455#[cfg(feature = "postgres_backend")]
56impl<T, Selection> DistinctOnDsl<Selection> for T
57where
58Selection: SelectableExpression<T>,
59 T: Table + AsQuery<Query = SelectStatement<FromClause<T>>>,
60 SelectStatement<FromClause<T>>: DistinctOnDsl<Selection>,
61 T::DefaultSelection: Expression<SqlType = T::SqlType> + ValidGrouping<()>,
62 T::SqlType: TypedExpressionType,
63{
64type Output = dsl::DistinctOn<SelectStatement<FromClause<T>>, Selection>;
6566fn distinct_on(self, selection: Selection) -> dsl::DistinctOn<Self, Selection> {
67self.as_query().distinct_on(selection)
68 }
69}