//! [`SubscriptionGen`]: the boxed closure that yields a subscription's futures.
usealloc::boxed::Box;usecrate::application::BoxFuture;/// Closure that produces the next future in a Subscription.
pubtypeSubscriptionGen<M>=Box<dyn FnMut()->Option<BoxFuture<M>>+'static>;