问题 If I want to take a &str like "aeiou" and turn it into an iterator roughly equivalent to ["a", "e", "i", "o", "u"].iter() , what's the most idiomatic way to do it? I've tried doing "aeiou".split("") which seemed idiomatic to me, but I got empty &str s at the beginning and end. I've tried doing "aeiou".chars() but it got pretty ugly and unwieldy from there trying to turn the char s into &str s. For the time being, I just typed out ["a", "e", "i", "o", "u"].iter() , but there's got to be an