pub type FutureStorage = Arc<Mutex<VecDeque<(FutureHandle, BoxFuture<()>)>>>;Expand description
A type for storing the queue. It uses a VecDeque to store FutureHandle’s and BoxFuture
Aliased Type§
pub struct FutureStorage { /* private fields */ }