Set whether to force re-diff. # Arguments `force` - Whether to force re-diffing
(mut self, force: bool)
| 253 | /// |
| 254 | /// * `force` - Whether to force re-diffing |
| 255 | pub fn with_force_rediff(mut self, force: bool) -> Self { |
| 256 | self.force_rediff = force; |
| 257 | self |
| 258 | } |
| 259 | |
| 260 | /// Check if a path matches the prefix filter. |
| 261 | pub fn matches_prefix(&self, path: &str) -> bool { |
no outgoing calls