pub type Future<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send, Global>>;
struct Future<T, E> { /* private fields */ }