pub fn box_future<F, T>(future: F) -> BoxFuture<'static, T>where F: Future<Output = T> + Send + 'static, T: 'static,