[][src]Trait stdweb::web::event::IUiEvent

pub trait IUiEvent: IEvent {
    fn detail(&self) -> i32 { ... }
fn view(&self) -> Option<Window> { ... } }

The IUiEvent interface represents simple user interface events.

(JavaScript docs)

Provided methods

fn detail(&self) -> i32

Provides the current click count for this event, if applicable.

(JavaScript docs)

fn view(&self) -> Option<Window>

Returns the WindowProxy that generated the event.

(JavaScript docs)

Loading content...

Implementors

impl IUiEvent for AuxClickEvent[src]

impl IUiEvent for ClickEvent[src]

impl IUiEvent for ContextMenuEvent[src]

impl IUiEvent for DoubleClickEvent[src]

impl IUiEvent for DragDropEvent[src]

impl IUiEvent for DragEndEvent[src]

impl IUiEvent for DragEnterEvent[src]

impl IUiEvent for DragEvent[src]

impl IUiEvent for DragExitEvent[src]

impl IUiEvent for DragLeaveEvent[src]

impl IUiEvent for DragOverEvent[src]

impl IUiEvent for DragRelatedEvent[src]

impl IUiEvent for DragStartEvent[src]

impl IUiEvent for GotPointerCaptureEvent[src]

impl IUiEvent for LostPointerCaptureEvent[src]

impl IUiEvent for MouseDownEvent[src]

impl IUiEvent for MouseEnterEvent[src]

impl IUiEvent for MouseLeaveEvent[src]

impl IUiEvent for MouseMoveEvent[src]

impl IUiEvent for MouseOutEvent[src]

impl IUiEvent for MouseOverEvent[src]

impl IUiEvent for MouseUpEvent[src]

impl IUiEvent for MouseWheelEvent[src]

impl IUiEvent for PointerCancelEvent[src]

impl IUiEvent for PointerDownEvent[src]

impl IUiEvent for PointerEnterEvent[src]

impl IUiEvent for PointerLeaveEvent[src]

impl IUiEvent for PointerMoveEvent[src]

impl IUiEvent for PointerOutEvent[src]

impl IUiEvent for PointerOverEvent[src]

impl IUiEvent for PointerUpEvent[src]

impl IUiEvent for ResourceAbortEvent[src]

impl IUiEvent for ResourceErrorEvent[src]

impl IUiEvent for ResourceLoadEvent[src]

impl IUiEvent for TouchCancel[src]

impl IUiEvent for TouchEnd[src]

impl IUiEvent for TouchEnter[src]

impl IUiEvent for TouchEvent[src]

impl IUiEvent for TouchLeave[src]

impl IUiEvent for TouchMove[src]

impl IUiEvent for TouchStart[src]

Loading content...