pub fn channel<T>(capacity: Option<NonZeroUsize>) -> (Sender<T>, Receiver<T>)Available on crate feature
tokio only.Expand description
Create an unsync MPSC channel, either bounded (if capacity is Some) or unbounded (if capacity is None).