pub fn key_code_to_char(code: VirtualKeyCode) -> Option<(char, char)>
Expand description

Convert key code to (char, shifted char) So VirtualKeyCode::Key1 (the 1 key) returns ('1', '!') and VirtualKeyCode::A (the A key) returns ('a', 'A')