In the following rust snippet:
fn main() { let list1: Vec = vec![0, 1, 2, 3, 4]; let it1 = list1.iter(); let tens = it1.map(|x| x * 10