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
#![cfg_attr(feature = "unstable", feature(specialization))]
#![deny(warnings, missing_debug_implementations, missing_copy_implementations)]
#![cfg_attr(feature = "clippy", allow(unstable_features))]
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy(conf_file="../clippy.toml")))]
#![cfg_attr(feature = "clippy", allow(
option_map_unwrap_or_else, option_map_unwrap_or,
match_same_arms, type_complexity,
))]
#![cfg_attr(feature = "clippy", warn(
option_unwrap_used, result_unwrap_used, print_stdout, wrong_pub_self_convention,
mut_mut, non_ascii_literal, similar_names, unicode_not_nfc,
enum_glob_use, if_not_else, items_after_statements, used_underscore_binding,
))]
#![cfg_attr(all(test, feature = "clippy"), allow(result_unwrap_used))]
extern crate byteorder;
#[macro_use]
mod macros;
#[cfg(test)]
#[macro_use]
extern crate cfg_if;
#[cfg(test)]
pub mod test_helpers;
pub mod associations;
pub mod backend;
pub mod connection;
#[macro_use]
pub mod expression;
#[doc(hidden)]
pub mod insertable;
pub mod query_builder;
#[macro_use]
pub mod types;
#[deprecated(since = "0.10.0", note = "use `insertable` instead")]
#[cfg(feature = "with-deprecated")]
pub use self::insertable as persistable;
#[cfg(feature = "mysql")]
pub mod mysql;
#[cfg(feature = "postgres")]
pub mod pg;
#[cfg(feature = "sqlite")]
pub mod sqlite;
pub mod migrations;
mod query_dsl;
pub mod query_source;
pub mod result;
pub mod row;
pub mod helper_types {
use super::query_dsl::*;
use super::expression::helper_types::Eq;
pub type Select<Source, Selection, Type = <Selection as super::Expression>::SqlType> =
<Source as SelectDsl<Selection, Type>>::Output;
pub type Filter<Source, Predicate> =
<Source as FilterDsl<Predicate>>::Output;
pub type FindBy<Source, Column, Value> =
Filter<Source, Eq<Column, Value>>;
pub type Find<Source, PK> = <Source as FindDsl<PK>>::Output;
pub type Order<Source, Ordering> =
<Source as OrderDsl<Ordering>>::Output;
pub type Limit<Source> = <Source as LimitDsl>::Output;
pub type Offset<Source> = <Source as OffsetDsl>::Output;
pub type With<'a, Source, Other> = <Source as WithDsl<'a, Other>>::Output;
use super::associations::HasTable;
use super::query_builder::{UpdateStatement, IntoUpdateTarget, AsChangeset};
pub type Update<Target, Changes> = UpdateStatement<
<Target as HasTable>::Table,
<Target as IntoUpdateTarget>::WhereClause,
<Changes as AsChangeset>::Changeset,
>;
}
pub mod prelude {
pub use associations::GroupedBy;
pub use connection::Connection;
pub use expression::{Expression, SelectableExpression, BoxableExpression};
pub use expression::expression_methods::*;
#[doc(inline)]
pub use insertable::Insertable;
pub use query_dsl::*;
pub use query_source::{QuerySource, Queryable, Table, Column, JoinTo};
pub use result::{QueryResult, ConnectionError, ConnectionResult, OptionalExtension};
}
pub use prelude::*;
#[doc(inline)]
pub use query_builder::functions::{insert, update, delete, select};
#[cfg(feature = "sqlite")]
pub use sqlite::query_builder::functions::*;
pub use result::Error::NotFound;
#[doc(inline)]
pub use types::structs::data_types;