Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR RUST

rust•armanriazi•error•[E0382]: use of moved value: `counter` value moved into closure here, in previous iteration of loop

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);
 
PREVIOUS NEXT
Tagged: #moved #moved #closure #previous #iteration #loop
ADD COMMENT
Topic
Name
9+8 =