Builder: set the commit message.
(mut self, message: impl Into<String>)
| 269 | impl Record { |
| 270 | /// Builder: set the commit message. |
| 271 | pub fn with_message(mut self, message: impl Into<String>) -> Self { |
| 272 | self.message = Some(message.into()); |
| 273 | self |
| 274 | } |
| 275 | |
| 276 | /// Builder: set the --all flag. |
| 277 | pub fn with_all(mut self, all: bool) -> Self { |
no outgoing calls