process_items

Function process_items 

Source
pub async fn process_items<T, U, F, Fut>(items: Vec<T>, processor: F) -> Vec<U>
where T: Send + 'static, U: Send + 'static, F: Fn(T) -> Fut + Send + Sync + Clone + 'static, Fut: Future<Output = U> + Send,