Complete the Rust solution
Drag tokens into the blanks
1impl Solution {2pub fn is_anagram(s: String, t: String) -> bool {3 if (t.len() ___ s.len()){4 return ___;5}6let mut map: HashMap<char, i64> = HashMap::new();7for (a, b) in s.chars().zip(t.chars()){8*map.entry(a).or_default() += 1;9*map.entry(b).or_default() -= 1;10}11map.into_values().all(|cnt| cnt == 0)12}13}