1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#[macro_use]
#[doc(hidden)]
pub mod ops;
#[doc(hidden)]
pub mod aliased;
#[doc(hidden)]
pub mod array_comparison;
#[doc(hidden)]
pub mod bound;
#[doc(hidden)]
pub mod coerce;
#[doc(hidden)]
pub mod count;
#[doc(hidden)]
pub mod exists;
pub mod expression_methods;
#[doc(hidden)]
#[macro_use]
pub mod functions;
#[doc(hidden)]
pub mod grouped;
pub mod helper_types;
#[doc(hidden)]
pub mod nullable;
#[doc(hidden)]
#[macro_use]
pub mod predicates;
pub mod sql_literal;
pub mod dsl {
#[doc(inline)] pub use super::count::{count, count_star};
#[doc(inline)] pub use super::functions::date_and_time::*;
#[doc(inline)] pub use super::functions::aggregate_ordering::*;
#[doc(inline)] pub use super::functions::aggregate_folding::*;
#[doc(inline)] pub use super::sql_literal::sql;
#[doc(inline)] pub use super::exists::exists;
#[cfg(feature = "postgres")]
pub use pg::expression::dsl::*;
}
pub use self::dsl::*;
pub use self::sql_literal::SqlLiteral;
use backend::Backend;
pub trait Expression {
type SqlType;
}
impl<T: Expression + ?Sized> Expression for Box<T> {
type SqlType = T::SqlType;
}
impl<'a, T: Expression + ?Sized> Expression for &'a T {
type SqlType = T::SqlType;
}
pub trait AsExpression<T> {
type Expression: Expression<SqlType=T>;
fn as_expression(self) -> Self::Expression;
}
impl<T: Expression> AsExpression<T::SqlType> for T {
type Expression = Self;
fn as_expression(self) -> Self {
self
}
}
pub trait SelectableExpression<QS>: Expression {
type SqlTypeForSelect;
}
impl<T: ?Sized, QS> SelectableExpression<QS> for Box<T> where
T: SelectableExpression<QS>,
Box<T>: Expression,
{
type SqlTypeForSelect = T::SqlTypeForSelect;
}
impl<'a, T: ?Sized, QS> SelectableExpression<QS> for &'a T where
T: SelectableExpression<QS>,
&'a T: Expression,
{
type SqlTypeForSelect = T::SqlTypeForSelect;
}
pub trait NonAggregate {
}
impl<T: NonAggregate + ?Sized> NonAggregate for Box<T> {
}
impl<'a, T: NonAggregate + ?Sized> NonAggregate for &'a T {
}
use query_builder::{QueryFragment, QueryId};
pub trait BoxableExpression<QS, DB> where
DB: Backend,
Self: Expression,
Self: SelectableExpression<QS>,
Self: NonAggregate,
Self: QueryFragment<DB>,
{}
impl<QS, T, DB> BoxableExpression<QS, DB> for T where
DB: Backend,
T: Expression,
T: SelectableExpression<QS>,
T: NonAggregate,
T: QueryFragment<DB>,
{
}
impl<QS, ST, STS, DB> QueryId for BoxableExpression<QS, DB, SqlType=ST, SqlTypeForSelect=STS> {
type QueryId = ();
fn has_static_query_id() -> bool {
false
}
}