(mut self, message: impl Into<String>)
| 190 | /// Set the change message. |
| 191 | #[must_use] |
| 192 | pub fn message(mut self, message: impl Into<String>) -> Self { |
| 193 | self.message = Some(message.into()); |
| 194 | self |
| 195 | } |
| 196 | |
| 197 | /// Set whether to apply the change after recording. Default is true. |
| 198 | #[must_use] |
no outgoing calls