[−][src]Function futures_intrusive::channel::shared::channel
pub fn channel<T>(capacity: usize) -> (Sender<T>, Receiver<T>) where
T: Send,
Creates a new channel with the given buffering capacity
Uses a GrowingHeapBuf
whose capacity grows dynamically up to
the given limit. Refer to generic_channel
and GrowingHeapBuf
for more information.