Set whether to detect moved files. # Arguments `detect` - Whether to detect file moves
(mut self, detect: bool)
| 165 | /// |
| 166 | /// * `detect` - Whether to detect file moves |
| 167 | pub fn with_detect_moves(mut self, detect: bool) -> Self { |
| 168 | self.detect_moves = detect; |
| 169 | self |
| 170 | } |
| 171 | |
| 172 | /// Set whether to detect encoding changes. |
| 173 | /// |
no outgoing calls