pub fn handle_parallel<F>( lines: Vec<String>, handler: Arc<F>, ) -> Vec<Result<(), String>>where F: Fn(&[String], &mut IoContext) -> Option<Result<(), String>> + Send + Sync + 'static,