for x in xs.iter_mut()
for x in &mut xs
Also `for x in option.iter_mut()` -> `if let Some(ref mut x) = option`
for x in xs.iter()
for x in &xs