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
#![deny(missing_docs, warnings)]
pub trait Modifier<F: ?Sized> {
fn modify(self, &mut F);
}
pub trait Set {
#[inline(always)]
fn set<M: Modifier<Self>>(mut self, modifier: M) -> Self where Self: Sized {
modifier.modify(&mut self);
self
}
#[inline(always)]
fn set_mut<M: Modifier<Self>>(&mut self, modifier: M) -> &mut Self {
modifier.modify(self);
self
}
}
mod impls;
#[cfg(test)]
mod test {
pub use super::*;
pub struct Thing {
x: usize
}
impl Set for Thing {}
pub struct ModifyX(usize);
impl Modifier<Thing> for ModifyX {
fn modify(self, thing: &mut Thing) {
let ModifyX(val) = self;
thing.x = val;
}
}
#[test]
fn test_set_and_set_mut() {
let mut thing = Thing { x: 6 };
thing.set_mut(ModifyX(8));
assert_eq!(thing.x, 8);
let thing = thing.set(ModifyX(9));
assert_eq!(thing.x, 9);
}
#[test]
fn test_tuple_chains() {
let thing = Thing { x: 8 }.set((ModifyX(5), ModifyX(112)));
assert_eq!(thing.x, 112);
}
}