//! [`BoxFuture`]: the boxed future type shared by `Task` and `Subscription`.
use Box;
use ;
/// Boxed future producing a value of type `T`. Shared between [`Task`]
/// and [`Subscription`].
///
/// [`Task`]: crate::application::Task
/// [`Subscription`]: crate::application::Subscription
pub type BoxFuture<T> = ;