#[derive(Clone, Debug, Eq, PartialEq)]
pub enum NativeEventName {
Click,
DblClick,
MouseDown,
MouseUp,
MouseMove,
MouseEnter,
MouseLeave,
MouseOver,
MouseOut,
ContextMenu,
Input,
KeyDown,
KeyUp,
KeyPress,
Focus,
Blur,
FocusIn,
FocusOut,
Submit,
Change,
Drag,
DragStart,
DragEnd,
DragOver,
DragEnter,
DragLeave,
Drop,
TouchStart,
TouchEnd,
TouchMove,
TouchCancel,
Wheel,
Copy,
Cut,
Paste,
Play,
Pause,
Ended,
LoadedData,
CanPlay,
VolumeChange,
TimeUpdate,
HashChange,
PopState,
Resize,
Scroll,
Load,
Unload,
BeforeUnload,
Error,
Online,
Offline,
VisibilityChange,
AnimationStart,
AnimationEnd,
AnimationIteration,
TransitionStart,
TransitionEnd,
TransitionRun,
EuvSignalUpdate,
Other(String),
}