(mut self, apply: bool)
| 189 | /// Set whether to apply the change after recording. Default is true. |
| 190 | #[must_use] |
| 191 | pub fn apply_after_record(mut self, apply: bool) -> Self { |
| 192 | self.apply_after_record = apply; |
| 193 | self |
| 194 | } |
| 195 | |
| 196 | /// Set whether to save the change to the store. Default is true. |
| 197 | #[must_use] |
no outgoing calls