pub enum EventReason {
General(CLICK_REASON),
EditChanged(EDIT_CHANGED_REASON),
VideoBind(LPVOID),
}
Expand description
UI action causing change.
Variants§
General(CLICK_REASON)
General event source triggers (by mouse, key or synthesized).
EditChanged(EDIT_CHANGED_REASON)
Edit control change trigger.
VideoBind(LPVOID)
<video>
request for frame source binding.
See the sciter::video
module for more reference.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EventReason
impl RefUnwindSafe for EventReason
impl !Send for EventReason
impl !Sync for EventReason
impl Unpin for EventReason
impl UnwindSafe for EventReason
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