pub type HttpFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, HttpError>> + Send + 'a>>;
pub struct HttpFuture<'a, T> { /* private fields */ }