Builder: set the message.
(mut self, message: impl Into<String>)
| 251 | |
| 252 | /// Builder: set the message. |
| 253 | pub fn with_message(mut self, message: impl Into<String>) -> Self { |
| 254 | self.message = Some(message.into()); |
| 255 | self |
| 256 | } |
| 257 | |
| 258 | /// Builder: set the include-untracked flag. |
| 259 | pub fn with_include_untracked(mut self, include: bool) -> Self { |
no outgoing calls