[][src]Enum sciter::dom::event::CLICK_REASON

#[repr(C)]pub enum CLICK_REASON {
    BY_MOUSE_CLICK,
    BY_KEY_CLICK,
    SYNTHESIZED,
    BY_MOUSE_ON_ICON,
}

General event source triggers

Variants

BY_MOUSE_CLICK

By mouse button.

BY_KEY_CLICK

By keyboard (e.g. spacebar).

SYNTHESIZED

Synthesized, by code.

BY_MOUSE_ON_ICON

Icon click, e.g. arrow icon on drop-down select.

Trait Implementations

impl Clone for CLICK_REASON[src]

impl Copy for CLICK_REASON[src]

impl Debug for CLICK_REASON[src]

impl PartialEq<CLICK_REASON> for CLICK_REASON[src]

impl PartialOrd<CLICK_REASON> for CLICK_REASON[src]

impl StructuralPartialEq for CLICK_REASON[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.