Type Alias futures_delay_queue::Receiver

source ·
pub type Receiver<T> = GenericReceiver<RawMutex, T, GrowingHeapBuf<T>>;
Expand description

A GenericReceiver implementation backed by parking_lot.

Uses a GrowingHeapBuf whose capacity grows dynamically up to the given limit. Refer to GrowingHeapBuf for more information.

Aliased Type§

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