pub fn boxed_task_future<'a, T, Error, Fut>( future: Fut, ) -> TaskProcessFuture<'a, Error>where Fut: Future<Output = Result<T, Error>> + Send + 'a, Error: Send + 'a,
Converts an operation into a boxed future.