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