Function unbounded

Source
pub fn unbounded<T>() -> (Sender<T>, Receiver<T>)
Expand description

Creates a new channel without a capacity bound.

An alias for channel(usize::MAX)