(mut self, apply: bool)
| 197 | /// Set whether to apply the change after recording. Default is true. |
| 198 | #[must_use] |
| 199 | pub fn apply_after_record(mut self, apply: bool) -> Self { |
| 200 | self.apply_after_record = apply; |
| 201 | self |
| 202 | } |
| 203 | |
| 204 | /// Set whether to save the change to the store. Default is true. |
| 205 | #[must_use] |
no outgoing calls