[][src]Struct dominator::events::TouchLeave

pub struct TouchLeave(_);

The TouchLeave event is fired when a touch point is moved off the interactive area of an element.

Warning: This event was a proposal in an early version of the specification and has not been implemented. Do not rely on it.

(JavaScript docs)

Trait Implementations

impl AsRef<Reference> for TouchLeave[src]

impl ReferenceType for TouchLeave[src]

impl PartialEq<TouchLeave> for TouchLeave[src]

impl Debug for TouchLeave[src]

impl ITouchEvent for TouchLeave[src]

fn alt_key(&self) -> bool[src]

Returns whether the Alt key was down when this event was fired. Read more

fn ctrl_key(&self) -> bool[src]

Indicates whether the Ctrl key was down when this event fired. Read more

fn meta_key(&self) -> bool[src]

Indicates whether the Meta key was down when this event fired. Read more

fn shift_key(&self) -> bool[src]

Indicates whether the Shift key was down when this event was fired. Read more

fn touches(&self) -> Vec<Touch>[src]

A list of Touches for every point of contact currently touching the surface. Read more

fn target_touches(&self) -> Vec<Touch>[src]

A list of Touches for every point of contact that is touching the surface and started on the element that is the target of the current event. Read more

fn changed_touches(&self) -> Vec<Touch>[src]

A list of Touches, one for each touch touch point that just became active with the current event. Read more

impl From<TouchLeave> for TouchEvent[src]

impl IUiEvent for TouchLeave[src]

fn detail(&self) -> i32[src]

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

fn view(&self) -> Option<Window>[src]

Returns the WindowProxy that generated the event. Read more

impl ConcreteEvent for TouchLeave[src]

impl Clone for TouchLeave[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl TryFrom<Reference> for TouchLeave[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<TouchEvent> for TouchLeave[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl<'_r> TryFrom<&'_r Value> for TouchLeave[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Event> for TouchLeave[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl<'_r> TryFrom<&'_r Reference> for TouchLeave[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Value> for TouchLeave[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<UiEvent> for TouchLeave[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl IEvent for TouchLeave[src]

fn bubbles(&self) -> bool[src]

Indicates whether this event bubbles upward through the DOM. Read more

fn cancel_bubble(&self) -> bool[src]

A historical alias to Event.stopPropagation(). Read more

fn set_cancel_bubble(&self, value: bool)[src]

A historical alias to Event.stopPropagation(). Setting this to true before returning from an event handler will stop propagation of the event. Read more

fn cancelable(&self) -> bool[src]

Indicates whether the event is cancelable. Read more

fn current_target(&self) -> Option<EventTarget>[src]

A reference to the currently registered target of this event. Read more

fn default_prevented(&self) -> bool[src]

Indicates whether preventDefault has been called on this event. Read more

fn event_phase(&self) -> EventPhase[src]

Indicates which phase of event flow is currently being evaluated. Read more

fn stop_immediate_propagation(&self)[src]

Prevents any further listeners from being called for this event. Read more

fn stop_propagation(&self)[src]

Stops the propagation of this event to descendants in the DOM. Read more

fn target(&self) -> Option<EventTarget>[src]

Returns a reference to the target to which this event was originally registered. Read more

fn time_stamp(&self) -> Option<f64>[src]

Returns the time in milliseconds at which this event was created. Read more

fn is_trusted(&self) -> bool[src]

Indicates whether the event was generated by a user action.

fn event_type(&self) -> String[src]

Returns a string containing the type of event. It is set when the event is constructed and is the name commonly used to refer to the specific event. Read more

fn prevent_default(&self)[src]

Cancels the event if it is cancelable, without stopping further propagation of the event. Read more

impl InstanceOf for TouchLeave[src]

impl JsSerialize for TouchLeave[src]

impl Eq for TouchLeave[src]

Auto Trait Implementations

impl Send for TouchLeave

impl Sync for TouchLeave

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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

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

The type returned in the event of a conversion error.