(mut self, message: impl Into<String>)
| 182 | /// Set the change message. |
| 183 | #[must_use] |
| 184 | pub fn message(mut self, message: impl Into<String>) -> Self { |
| 185 | self.message = Some(message.into()); |
| 186 | self |
| 187 | } |
| 188 | |
| 189 | /// Set whether to apply the change after recording. Default is true. |
| 190 | #[must_use] |
no outgoing calls