@@ -27,7 +27,7 @@ pub struct DiffContext<'a, S: SerializeSeq> {
27
27
/// Mode for serializing field paths
28
28
field_path_mode : FieldPathMode ,
29
29
/// Set to true if any change is detected
30
- has_changes : bool ,
30
+ has_changes : & ' a mut bool ,
31
31
}
32
32
33
33
impl < ' a , S : SerializeSeq > Drop for DiffContext < ' a , S > {
@@ -52,7 +52,7 @@ impl<'a, S: SerializeSeq> DiffContext<'a, S> {
52
52
53
53
/// True if a change operation has been written
54
54
pub fn has_changes ( & self ) -> bool {
55
- self . has_changes
55
+ * self . has_changes
56
56
}
57
57
58
58
/// Called when we visit a field. If the structure is recursive (i.e. struct within struct,
@@ -186,7 +186,7 @@ impl<'a, S: SerializeSeq> DiffContext<'a, S> {
186
186
}
187
187
self . element_stack_start = 0 ;
188
188
}
189
- self . has_changes |= is_change;
189
+ * self . has_changes |= is_change;
190
190
self . implicit_exit_written = implicit_exit;
191
191
self . serializer . serialize_element ( value)
192
192
}
@@ -225,7 +225,7 @@ impl<'a, S: SerializeSeq> DiffContext<'a, S> {
225
225
serializer : & mut * self . serializer ,
226
226
implicit_exit_written : self . implicit_exit_written ,
227
227
field_path_mode : self . field_path_mode ,
228
- has_changes : false ,
228
+ has_changes : self . has_changes ,
229
229
}
230
230
}
231
231
}
@@ -294,7 +294,7 @@ impl<'a, 'b, T: SerdeDiff> Serialize for Diff<'a, 'b, T> {
294
294
implicit_exit_written : false ,
295
295
parent_element_stack : None ,
296
296
field_path_mode : self . field_path_mode ,
297
- has_changes : false ,
297
+ has_changes : & mut false ,
298
298
} ;
299
299
self . old . diff ( & mut ctx, & self . new ) . unwrap ( ) ;
300
300
}
@@ -314,13 +314,13 @@ impl<'a, 'b, T: SerdeDiff> Serialize for Diff<'a, 'b, T> {
314
314
implicit_exit_written : false ,
315
315
parent_element_stack : None ,
316
316
field_path_mode : self . field_path_mode ,
317
- has_changes : false ,
317
+ has_changes : & mut false ,
318
318
} ;
319
319
320
320
// Do the actual comparison, writing diff commands (see DiffCommandRef, DiffCommandValue)
321
321
// into the sequence
322
322
self . old . diff ( & mut ctx, & self . new ) ?;
323
- self . has_changes . set ( ctx. has_changes ) ;
323
+ self . has_changes . set ( * ctx. has_changes ) ;
324
324
}
325
325
326
326
// End the sequence on the serializer
0 commit comments