(mut self, apply: bool)
| 204 | /// Set whether to apply the change after recording. Default is true. |
| 205 | #[must_use] |
| 206 | pub fn apply_after_record(mut self, apply: bool) -> Self { |
| 207 | self.apply_after_record = apply; |
| 208 | self |
| 209 | } |
| 210 | |
| 211 | /// Set whether to save the change to the store. Default is true. |
| 212 | #[must_use] |
no outgoing calls