error[E0507]: cannot move out of `self.v` which is behind a shared reference --> $DIR/for-i-in-vec.rs:11:18 | LL | for _ in self.v { | ^^^^^^ move occurs because `self.v` has type `Vec`, which does not implement the `Copy` trait | help: consider iterating over a slice of the `Vec`'s content | LL | for _ in &self.v { | + error[E0507]: cannot move out of `self.h` which is behind a shared reference --> $DIR/for-i-in-vec.rs:13:18 | LL | for _ in self.h { | ^^^^^^ move occurs because `self.h` has type `HashMap`, which does not implement the `Copy` trait | help: consider iterating over a slice of the `HashMap`'s content | LL | for _ in &self.h { | + error[E0507]: cannot move out of a shared reference --> $DIR/for-i-in-vec.rs:21:19 | LL | for loader in *LOADERS { | ^^^^^^^^ move occurs because value has type `Vec<&u8>`, which does not implement the `Copy` trait | help: consider iterating over a slice of the `Vec<&u8>`'s content | LL | for loader in &*LOADERS { | + error: aborting due to 3 previous errors For more information about this error, try `rustc --explain E0507`.