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
use crateCRATE_NAME_STR;
use ;
use quote;
pub
pub
pub
pub
pub
pub
/// Gets the crate name as an [`Ident`].
/// Gets the abstract database type to use.
/*impl SqlOperator {
fn as_str(&self) -> &'static str {
match self {
SqlOperator::Equals => "=",
SqlOperator::NotEquals => "!=",
SqlOperator::GreaterThan => ">",
SqlOperator::LessThan => "<",
SqlOperator::GreaterThanOrEqual => ">=",
SqlOperator::LessThanOrEqual => "<=",
SqlOperator::Like => "LIKE",
SqlOperator::ILike => "ILIKE",
SqlOperator::In => "IN",
SqlOperator::NotIn => "NOT IN",
}
}
}
*/