pub async fn walk_async_concurrent<F, T>(dir: &str, concurrency: usize, f: F)where F: FnMut(TestFile) -> T, T: Future<Output = TestFile>,
The same as walk_async but can run concurrent files in parallel.
walk_async
concurrent