Leia as linhas do arquivo, itere sobre cada linha e cada caractere nessa linha

Eu preciso ler um arquivo, obter cada linha, iterar sobre cada linha e verificar se essa linha contém algum caractere de "aeiuo" e se contém pelo menos 2 dos caracteres "äüö".

Este código é Rust idiomático? Como verifico vários caracteres em umString?

Minha tentativa até agora com algum Google e roubo de código:

use std::error::Error;
use std::fs::File;
use std::io::BufReader;
use std::io::prelude::*;
use std::path::Path;

fn main() {
    // Create a path to the desired file
    let path = Path::new("foo.txt");
    let display = path.display();

    // Open the path in read-only mode, returns `io::Result<File>`
    let file = match File::open(&path) {
        // The `description` method of `io::Error` returns a string that describes the error
        Err(why) => panic!("couldn't open {}: {}", display, Error::description(&why)),
        Ok(file) => file,
    };

    // Collect all lines into a vector
    let reader = BufReader::new(file);
    let lines: Vec<_> = reader.lines().collect();

    for l in lines {
        if (l.unwrap().contains("a")) {
            println!("here is a");
        }
    }
}

(Link do parque infantil)

questionAnswers(2)

yourAnswerToTheQuestion