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
175
176
//! `Cd`: A "smart pointer" that tracks changes to the data it owns.
//!
//! ## Usage
//! ```
//! use changed::Cd;
//!
//! // Create the change tracker with an i32
//! let mut test: Cd<i32> = Cd::new(20);
//!
//! // Mutate it (calling deref_mut through the *)
//! *test += 5;
//!
//! // changed() reports whether or not it was changed
//! assert!(test.changed());
//!
//! // Reset the tracker back to false
//! test.reset();
//!
//! // Read the data
//! assert_eq!(*test, 25);
//!
//! // That didn't trip the change detection!
//! assert!(!test.changed());
//! ```
//!
//! ## How it works
//! Technically, it doesn't track changes. It tracks calls to `deref_mut()`
//! so it is entirely possible to call `deref_mut()` and not change it, giving a false positive.
//!
//! Along with that, there is a function to mutate a `Cd` without tripping change detection.
use ;
/// Cd: Change Detection
///
/// Start by creating one with [`new()`](Cd::new()).
/// deref does not trip change detection.
/// ```
/// use changed::Cd;
/// let cd = Cd::new(5);
/// assert_eq!(*cd, 5); // deref for == 5
/// assert!(!cd.changed()); // .changed() is false
/// ```
/// deref_mut trips change detection.
/// ```
/// use changed::Cd;
/// let mut cd = Cd::new(5);
/// *cd += 5; // deref_mut for add assign
/// assert_eq!(*cd, 10);
/// assert!(cd.changed()); // .changed() is true
/// ```
/// Impl default where the data impls default. Change detection is initialized to false.
/// ```
/// use changed::Cd;
/// // 0 is default for i32.
/// let zero: Cd<i32> = Cd::default();
/// assert!(!zero.changed());
/// ```