I have a map: HashMap<&str, Vec<&str>> and I\'m trying to create a reverse lookup map HashMap<&str, &str> which r
HashMap<&str, Vec<&str>>
HashMap<&str, &str>