diesel/query_dsl/
single_value_dsl.rs

1use super::methods::LimitDsl;
2use dsl::Limit;
3use expression::grouped::Grouped;
4use expression::subselect::Subselect;
5use query_builder::SelectQuery;
6use sql_types::{IntoNullable, SingleValue};
7
8/// The `single_value` method
9///
10/// This trait should not be relied on directly by most apps. Its behavior is
11/// provided by [`QueryDsl`]. However, you may need a where clause on this trait
12/// to call `single_value` from generic code.
13///
14/// [`QueryDsl`]: ../trait.QueryDsl.html
15pub trait SingleValueDsl {
16    /// The type returned by `.single_value`.
17    type Output;
18
19    /// See the trait documentation.
20    fn single_value(self) -> Self::Output;
21}
22
23impl<T, ST> SingleValueDsl for T
24where
25    Self: SelectQuery<SqlType = ST> + LimitDsl,
26    ST: IntoNullable,
27    ST::Nullable: SingleValue,
28{
29    type Output = Grouped<Subselect<Limit<Self>, ST::Nullable>>;
30
31    fn single_value(self) -> Self::Output {
32        Grouped(Subselect::new(self.limit(1)))
33    }
34}