pub type HostFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T>> + Send + 'a>>;
A boxed asynchronous host operation.
pub struct HostFuture<'a, T> { /* private fields */ }