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