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

A pinned, boxed future whose output is Result<T, E>.

Aliased Type§

struct PinnedFuture<T, E> { /* private fields */ }