fn spawn<T>(
handle: &Handle,
fut: impl Future<Output = Result<T>> + Send + 'static,
) -> BoxFuture<'static, Result<T>>where
T: Send + 'static,Expand description
Spawns fut on handle, propagating panics and mapping task cancellation
to ParquetError::External