Builder: set the commit message.
(mut self, message: impl Into<String>)
| 261 | impl Record { |
| 262 | /// Builder: set the commit message. |
| 263 | pub fn with_message(mut self, message: impl Into<String>) -> Self { |
| 264 | self.message = Some(message.into()); |
| 265 | self |
| 266 | } |
| 267 | |
| 268 | /// Builder: set the --all flag. |
| 269 | pub fn with_all(mut self, all: bool) -> Self { |
no outgoing calls