Quelle est la différence entre Iter et Into_iter Rust

The iterator returned by into_iter may yield any of 
T, &T or &mut T, depending on the context.

The iterator returned by iter will yield &T, by convention.

The iterator returned by iter_mut will yield &mut T, by convention.
Coding Wizard