pub fn mpsc_channel<T>() -> (Sender<T>, Receiver<T>)
Creates a new channel for sending messages of type T, returning the sender and receiver ends.
T