pub type BoxFuture<'a, T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'a>>;
Expand description

A boxed future that outputs a Result<T, E>.

Aliased Type§

struct BoxFuture<'a, T, E> { /* private fields */ }