All quizzes
RustCoreFill the blank

Fill in the blank so the loop reads each element WITHOUT consuming (moving) the Vec, leaving `v` usable afterward. Replace ____ with the single method call.

let v = vec![1, 2, 3];
for x in v.____ {
    println!("{}", x);
}
println!("{:?}", v); // v must still be valid here