Set whether to detect moved files. # Arguments `detect` - Whether to detect file moves
(mut self, detect: bool)
| 203 | /// |
| 204 | /// * `detect` - Whether to detect file moves |
| 205 | pub fn with_detect_moves(mut self, detect: bool) -> Self { |
| 206 | self.detect_moves = detect; |
| 207 | self |
| 208 | } |
| 209 | |
| 210 | /// Set whether to detect encoding changes. |
| 211 | /// |
no outgoing calls