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