Returns `true` if parallel processing should be used for the given file count.
(&self, file_count: usize)
| 335 | |
| 336 | /// Returns `true` if parallel processing should be used for the given file count. |
| 337 | pub fn should_parallelize(&self, file_count: usize) -> bool { |
| 338 | self.parallel && file_count >= self.parallel_threshold |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | impl Default for ParallelRecordOptions { |
no outgoing calls
no test coverage detected