(mut self, detect: bool)
| 279 | /// Set whether raw filesystem renames should be detected. |
| 280 | #[must_use] |
| 281 | pub fn detect_raw_renames(mut self, detect: bool) -> Self { |
| 282 | self.detect_raw_renames = detect; |
| 283 | self |
| 284 | } |
| 285 | |
| 286 | /// Get whether raw filesystem rename detection is enabled. |
| 287 | #[must_use] |
no outgoing calls