Function walk_async_concurrent

Source
pub async fn walk_async_concurrent<F, T>(dir: &str, concurrency: usize, f: F)
where F: FnMut(TestFile) -> T, T: Future<Output = TestFile>,
Expand description

The same as walk_async but can run concurrent files in parallel.