Set whether to use mtime optimization. # Arguments `check` - Whether to check mtime before comparing content
(mut self, check: bool)
| 155 | /// |
| 156 | /// * `check` - Whether to check mtime before comparing content |
| 157 | pub fn with_check_mtime(mut self, check: bool) -> Self { |
| 158 | self.check_mtime = check; |
| 159 | self |
| 160 | } |
| 161 | |
| 162 | /// Set whether to detect moved files. |
| 163 | /// |
no outgoing calls