Type Alias arti::PinnedFuture

source ·
pub(crate) type PinnedFuture<T> = Pin<Box<dyn Future<Output = T>>>;
Expand description

Shorthand for a boxed and pinned Future.

Aliased Type§

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