Mark as a dry run result.
(mut self)
| 279 | |
| 280 | /// Mark as a dry run result. |
| 281 | pub fn as_dry_run(mut self) -> Self { |
| 282 | self.was_dry_run = true; |
| 283 | self |
| 284 | } |
| 285 | |
| 286 | /// Add a warning. |
| 287 | pub fn with_warning(mut self, warning: impl Into<String>) -> Self { |
no outgoing calls