pub(crate) type PinnedFuture<T> = Pin<Box<dyn Future<Output = T>>>;
Shorthand for a boxed and pinned Future.