Set whether to force re-diffing. # Arguments `force` - Whether to bypass optimizations
(mut self, force: bool)
| 229 | /// |
| 230 | /// * `force` - Whether to bypass optimizations |
| 231 | pub fn with_force_rediff(mut self, force: bool) -> Self { |
| 232 | self.force_rediff = force; |
| 233 | self |
| 234 | } |
| 235 | |
| 236 | /// Set whether to ignore missing files. |
| 237 | /// |
no outgoing calls