Set whether to use mtime optimization. # Arguments `check` - Whether to check mtime before comparing content
(mut self, check: bool)
| 193 | /// |
| 194 | /// * `check` - Whether to check mtime before comparing content |
| 195 | pub fn with_check_mtime(mut self, check: bool) -> Self { |
| 196 | self.check_mtime = check; |
| 197 | self |
| 198 | } |
| 199 | |
| 200 | /// Set whether to detect moved files. |
| 201 | /// |
no outgoing calls