Rustarmanriazierror [E0382]: Penggunaan nilai yang dipindahkan: `counter` nilai dipindahkan ke penutupan di sini, dalam iterasi loop sebelumnya

Rust is telling us that we can’t move the ownership of lock counter into multiple threads. Let’s fix the compiler error with a multiple-ownership(like RC) method 
Fortunately, Arc<T> is a type like Rc<T> that is safe to use in concurrent situations
    let counter = Arc::new(Mutex::new(0));
    let counter = Arc::clone(&counter);
ArmanRiazi