You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0507]: cannot move out of indexed content
--> ...\test.rs:3:25
|
3 | vals.iter().map(|k| encoding[k]).collect()
| ^^^^^^^^^^^ cannot move out of indexed content
error: aborting due to previous error
Perhaps the compiler could suggest the programmer to add a &* :
vals.iter().map(|k| &*encoding[k]).collect()
The text was updated successfully, but these errors were encountered:
This code:
It doesn't compile:
Perhaps the compiler could suggest the programmer to add a &* :
The text was updated successfully, but these errors were encountered: