9
Broadcast vs mpsc channels?
(lemmy.zip)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
The problem might be the arc mutex. mpsc are already clone, send and sync. When you clone an arc mutex T, you are cloning the arc. But mpsc probably needs to be cloned itself to work properly.