Builder: set the diff algorithm.
(mut self, algorithm: impl Into<String>)
| 307 | |
| 308 | /// Builder: set the diff algorithm. |
| 309 | pub fn with_algorithm(mut self, algorithm: impl Into<String>) -> Self { |
| 310 | self.algorithm = algorithm.into(); |
| 311 | self |
| 312 | } |
| 313 | |
| 314 | /// Builder: set the dry-run flag. |
| 315 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
no outgoing calls