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
use backend::Backend;
use query_builder::AstPass;
use query_source::QuerySource;
use result::QueryResult;
pub trait AsChangeset {
type Target: QuerySource;
type Changeset;
fn as_changeset(self) -> Self::Changeset;
}
pub trait Changeset<DB: Backend> {
fn is_noop(&self) -> bool;
fn walk_ast(&self, pass: AstPass<DB>) -> QueryResult<()>;
}
impl<T: AsChangeset> AsChangeset for Option<T> {
type Target = T::Target;
type Changeset = Option<T::Changeset>;
fn as_changeset(self) -> Self::Changeset {
self.map(|v| v.as_changeset())
}
}
impl<T: Changeset<DB>, DB: Backend> Changeset<DB> for Option<T> {
fn is_noop(&self) -> bool {
self.is_none()
}
fn walk_ast(&self, out: AstPass<DB>) -> QueryResult<()> {
match *self {
Some(ref c) => c.walk_ast(out),
None => Ok(()),
}
}
}