Builder: set the diff algorithm.
(mut self, algorithm: impl Into<String>)
| 315 | |
| 316 | /// Builder: set the diff algorithm. |
| 317 | pub fn with_algorithm(mut self, algorithm: impl Into<String>) -> Self { |
| 318 | self.algorithm = algorithm.into(); |
| 319 | self |
| 320 | } |
| 321 | |
| 322 | /// Builder: set the dry-run flag. |
| 323 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
no outgoing calls