enum_from_primitive!{
#[derive(Eq, PartialEq, Copy, Clone, Debug, Serialize, Deserialize)]
pub enum Key {
Unknown = 0,
A = 4,
B = 5,
C = 6,
D = 7,
E = 8,
F = 9,
G = 10,
H = 11,
I = 12,
J = 13,
K = 14,
L = 15,
M = 16,
N = 17,
O = 18,
P = 19,
Q = 20,
R = 21,
S = 22,
T = 23,
U = 24,
V = 25,
W = 26,
X = 27,
Y = 28,
Z = 29,
One = 30,
Two = 31,
Three = 32,
Four = 33,
Five = 34,
Six = 35,
Seven = 36,
Eight = 37,
Nine = 38,
Zero = 39,
Return = 40,
Escape = 41,
Backspace = 42,
Tab = 43,
Space = 44,
Minus = 45,
Equals = 46,
Leftbracket = 47,
Rightbracket = 48,
Backslash = 49,
Nonushash = 50,
Semicolon = 51,
Apostrophe = 52,
Grave = 53,
Comma = 54,
Period = 55,
Slash = 56,
Capslock = 57,
F1 = 58,
F2 = 59,
F3 = 60,
F4 = 61,
F5 = 62,
F6 = 63,
F7 = 64,
F8 = 65,
F9 = 66,
F10 = 67,
F11 = 68,
F12 = 69,
Printscreen = 70,
Scrolllock = 71,
Pause = 72,
Insert = 73,
Home = 74,
Pageup = 75,
Delete = 76,
End = 77,
Pagedown = 78,
Right = 79,
Left = 80,
Down = 81,
Up = 82,
Numlockclear = 83,
KpDivide = 84,
KpMultiply = 85,
KpMinus = 86,
KpPlus = 87,
KpEnter = 88,
Kp1 = 89,
Kp2 = 90,
Kp3 = 91,
Kp4 = 92,
Kp5 = 93,
Kp6 = 94,
Kp7 = 95,
Kp8 = 96,
Kp9 = 97,
Kp0 = 98,
KpPeriod = 99,
Nonusbackslash = 100,
Application = 101,
Power = 102,
KpEquals = 103,
F13 = 104,
F14 = 105,
F15 = 106,
F16 = 107,
F17 = 108,
F18 = 109,
F19 = 110,
F20 = 111,
F21 = 112,
F22 = 113,
F23 = 114,
F24 = 115,
Execute = 116,
Help = 117,
Menu = 118,
Select = 119,
Stop = 120,
Again = 121,
Undo = 122,
Cut = 123,
Copy = 124,
Paste = 125,
Find = 126,
Mute = 127,
Volumeup = 128,
Volumedown = 129,
KpComma = 133,
KpEqualsas400 = 134,
International1 = 135,
International2 = 136,
International3 = 137,
International4 = 138,
International5 = 139,
International6 = 140,
International7 = 141,
International8 = 142,
International9 = 143,
Lang1 = 144,
Lang2 = 145,
Lang3 = 146,
Lang4 = 147,
Lang5 = 148,
Lang6 = 149,
Lang7 = 150,
Lang8 = 151,
Lang9 = 152,
Alterase = 153,
Sysreq = 154,
Cancel = 155,
Clear = 156,
Prior = 157,
Return2 = 158,
Separator = 159,
Out = 160,
Oper = 161,
Clearagain = 162,
Crsel = 163,
Exsel = 164,
Kp00 = 176,
Kp000 = 177,
Thousandsseparator = 178,
Decimalseparator = 179,
Currencyunit = 180,
Currencysubunit = 181,
KpLeftparen = 182,
KpRightparen = 183,
KpLeftbrace = 184,
KpRightbrace = 185,
KpTab = 186,
KpBackspace = 187,
KpA = 188,
KpB = 189,
KpC = 190,
KpD = 191,
KpE = 192,
KpF = 193,
KpXor = 194,
KpPower = 195,
KpPercent = 196,
KpLess = 197,
KpGreater = 198,
KpAmpersand = 199,
KpDblampersand = 200,
KpVerticalbar = 201,
KpDblverticalbar = 202,
KpColon = 203,
KpHash = 204,
KpSpace = 205,
KpAt = 206,
KpExclam = 207,
KpMemstore = 208,
KpMemrecall = 209,
KpMemclear = 210,
KpMemadd = 211,
KpMemsubtract = 212,
KpMemmultiply = 213,
KpMemdivide = 214,
KpPlusminus = 215,
KpClear = 216,
KpClearentry = 217,
KpBinary = 218,
KpOctal = 219,
KpDecimal = 220,
KpHexadecimal = 221,
Lctrl = 224,
Lshift = 225,
Lalt = 226,
Lgui = 227,
Rctrl = 228,
Rshift = 229,
Ralt = 230,
Rgui = 231,
Mode = 257,
Audionext = 258,
Audioprev = 259,
Audiostop = 260,
Audioplay = 261,
Audiomute = 262,
Mediaselect = 263,
Www = 264,
Mail = 265,
Calculator = 266,
Computer = 267,
AcSearch = 268,
AcHome = 269,
AcBack = 270,
AcForward = 271,
AcStop = 272,
AcRefresh = 273,
AcBookmarks = 274,
Brightnessdown = 275,
Brightnessup = 276,
Displayswitch = 277,
Kbdillumtoggle = 278,
Kbdillumdown = 279,
Kbdillumup = 280,
Eject = 281,
Sleep = 282,
App1 = 283,
App2 = 284,
}
}