VARCJZ7U4MM5B672ZKGSKCVCHHMJBW2RTHHKNZOPUS7WYO5LZFKQC let req: Request = Message::decode(&buf[..]).unwrap();if let Some(msg) = req.msg {match msg {GetCount(_) => {}PostWords(words) => {let mut s = String::new();GzDecoder::new(&words.data[..]).read_to_string(&mut s).unwrap();for w in s.split(char::is_whitespace) {if w.len() == 0 { continue; }dbg!(w);}}}}