Массивы и коллекции / Итераторы

let list = [123];
let iterator = list.iter();

for x in iterator {
    println!("x is {:?}", x); 
}