pub enum EventType {
Show 86 variants
OnAbort,
OnAnimationCancel,
OnAnimationEnd,
OnAnimationIteration,
OnAnimationStart,
OnAuxClick,
OnBlur,
OnCanPlay,
OnCanPlaythrough,
OnChange,
OnClick,
OnClose,
OnContextMenu,
OnCopy,
OnCut,
OnDblClick,
OnDrag,
OnDragEnd,
OnDragEnter,
OnDragExit,
OnDragLeave,
OnDragOver,
OnDragStart,
OnDrop,
OnDurationChange,
OnEmptied,
OnEnded,
OnError,
OnFocus,
OnGotPointerCapture,
OnInput,
OnInvalid,
OnKeyDown,
OnKeyPress,
OnKeyUp,
OnLoad,
OnLoadedData,
OnLoadedMetadata,
OnLoadEnd,
OnLoadStart,
OnLostPointerCapture,
OnMouseDown,
OnMouseEnter,
OnMouseLeave,
OnMouseMove,
OnMouseOut,
OnMouseOver,
OnMouseUp,
OnPaste,
OnPause,
OnPlay,
OnPlaying,
OnPointerCancel,
OnPointerDown,
OnPointerEnter,
OnPointerLeave,
OnPointerMove,
OnPointerOut,
OnPointerOver,
OnPointerUp,
OnProgress,
OnRateChange,
OnReset,
OnResize,
OnScroll,
OnSeeked,
OnSeeking,
OnSelect,
OnSelectStart,
OnShow,
OnStalled,
OnSubmit,
OnSuspend,
OnTimeUpdate,
OnToggle,
OnTouchCancel,
OnTouchEnd,
OnTouchMove,
OnTouchStart,
OnTransitionCancel,
OnTransitionEnd,
OnTransitionRun,
OnTransitionStart,
OnVolumeChange,
OnWaiting,
OnWheel,
}Expand description
Rappresent all possible js events used in reView
Variants§
OnAbort
OnAnimationCancel
OnAnimationEnd
OnAnimationIteration
OnAnimationStart
OnAuxClick
OnBlur
OnCanPlay
OnCanPlaythrough
OnChange
OnClick
OnClose
OnContextMenu
OnCopy
OnCut
OnDblClick
OnDrag
OnDragEnd
OnDragEnter
OnDragExit
OnDragLeave
OnDragOver
OnDragStart
OnDrop
OnDurationChange
OnEmptied
OnEnded
OnError
OnFocus
OnGotPointerCapture
OnInput
OnInvalid
OnKeyDown
OnKeyPress
OnKeyUp
OnLoad
OnLoadedData
OnLoadedMetadata
OnLoadEnd
OnLoadStart
OnLostPointerCapture
OnMouseDown
OnMouseEnter
OnMouseLeave
OnMouseMove
OnMouseOut
OnMouseOver
OnMouseUp
OnPaste
OnPause
OnPlay
OnPlaying
OnPointerCancel
OnPointerDown
OnPointerEnter
OnPointerLeave
OnPointerMove
OnPointerOut
OnPointerOver
OnPointerUp
OnProgress
OnRateChange
OnReset
OnResize
OnScroll
OnSeeked
OnSeeking
OnSelect
OnSelectStart
OnShow
OnStalled
OnSubmit
OnSuspend
OnTimeUpdate
OnToggle
OnTouchCancel
OnTouchEnd
OnTouchMove
OnTouchStart
OnTransitionCancel
OnTransitionEnd
OnTransitionRun
OnTransitionStart
OnVolumeChange
OnWaiting
OnWheel
Trait Implementations§
impl Copy for EventType
impl Eq for EventType
impl StructuralPartialEq for EventType
Auto Trait Implementations§
impl Freeze for EventType
impl RefUnwindSafe for EventType
impl Send for EventType
impl Sync for EventType
impl Unpin for EventType
impl UnwindSafe for EventType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.