Type Definition futures_intrusive::channel::shared::Sender

source ·
pub type Sender<T> = GenericSender<RawMutex, T, GrowingHeapBuf<T>>;
Expand description

A GenericSender implementation backed by parking_lot.

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