[−][src]Struct stdweb::web::event::TouchEnd
The TouchEnd event is fired when one or more touch points are removed
from the touch surface.
Trait Implementations
impl JsSerialize for TouchEnd[src]
impl TryFrom<TouchEvent> for TouchEnd[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: TouchEvent) -> Result<Self, Self::Error>[src]
impl TryFrom<TouchEnd> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: TouchEnd) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for TouchEnd[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: Reference) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Reference> for TouchEnd[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: &Reference) -> Result<Self, Self::Error>[src]
impl TryFrom<Value> for TouchEnd[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>[src]
impl<'_r> TryFrom<&'_r Value> for TouchEnd[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error>[src]
impl InstanceOf for TouchEnd[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for TouchEnd[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl IEvent for TouchEnd[src]
fn bubbles(&self) -> bool[src]
fn cancel_bubble(&self) -> bool[src]
fn set_cancel_bubble(&self, value: bool)[src]
fn cancelable(&self) -> bool[src]
fn current_target(&self) -> Option<EventTarget>[src]
fn default_prevented(&self) -> bool[src]
fn event_phase(&self) -> EventPhase[src]
fn stop_immediate_propagation(&self)[src]
fn stop_propagation(&self)[src]
fn target(&self) -> Option<EventTarget>[src]
fn time_stamp(&self) -> Option<f64>[src]
fn is_trusted(&self) -> bool[src]
fn event_type(&self) -> String[src]
fn prevent_default(&self)[src]
impl ConcreteEvent for TouchEnd[src]
const EVENT_TYPE: &'static str[src]
impl IUiEvent for TouchEnd[src]
impl ITouchEvent for TouchEnd[src]
fn alt_key(&self) -> bool[src]
fn ctrl_key(&self) -> bool[src]
fn meta_key(&self) -> bool[src]
fn shift_key(&self) -> bool[src]
fn touches(&self) -> Vec<Touch>[src]
fn target_touches(&self) -> Vec<Touch>[src]
fn changed_touches(&self) -> Vec<Touch>[src]
impl From<TouchEnd> for TouchEvent[src]
impl From<TouchEnd> for Reference[src]
impl Clone for TouchEnd[src]
impl AsRef<Reference> for TouchEnd[src]
impl Eq for TouchEnd[src]
impl PartialEq<TouchEnd> for TouchEnd[src]
impl Debug for TouchEnd[src]
Auto Trait Implementations
impl Send for TouchEnd
impl Sync for TouchEnd
impl Unpin for TouchEnd
impl RefUnwindSafe for TouchEnd
impl UnwindSafe for TouchEnd
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,