Struct stdweb::web::event::PointerDownEvent [] [src]

pub struct PointerDownEvent(_);

The PointerDownEvent is fired when a pointer becomes active

(JavaScript docs)

Trait Implementations

impl Clone for PointerDownEvent
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PointerDownEvent
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for PointerDownEvent
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for PointerDownEvent
[src]

impl InstanceOf for PointerDownEvent
[src]

[src]

Checks whenever a given Reference if of type Self.

impl AsRef<Reference> for PointerDownEvent
[src]

[src]

Performs the conversion.

impl ReferenceType for PointerDownEvent
[src]

[src]

Converts a given reference into a concrete reference-like wrapper. Doesn't do any type checking; highly unsafe to use! Read more

impl From<PointerDownEvent> for Reference
[src]

[src]

Performs the conversion.

impl TryFrom<PointerDownEvent> for Reference
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Reference> for PointerDownEvent
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Value> for PointerDownEvent
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl JsSerialize for PointerDownEvent
[src]

impl IEvent for PointerDownEvent
[src]

[src]

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

[src]

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

[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

[src]

Indicates whether the event is cancelable. Read more

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

Indicates whether the event was generated by a user action.

[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

[src]

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

impl IUiEvent for PointerDownEvent
[src]

[src]

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

[src]

Returns the WindowProxy that generated the event. Read more

impl IMouseEvent for PointerDownEvent
[src]

[src]

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

[src]

Indicates the mouse button that fired this event. Read more

[src]

Indicates which mouse buttons were down when this event was fired. Read more

[src]

Returns the X position in the application's client area where this event occured. Read more

[src]

Returns the Y position in the application's client area where this event occured. Read more

[src]

Returns the X position on the target element where this event occured. Read more

[src]

Returns the Y position on the target element where this event occured. Read more

[src]

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

[src]

Returns the current state of the specified modifier key. Read more

[src]

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

[src]

Returns the change in X coordinate of the pointer between this event and the previous MouseMove event. Read more

[src]

Returns the change in Y coordinate of the pointer between this event and the previous MouseMove event. Read more

[src]

Returns the ID of the hit region affected by the event. Read more

[src]

Returns the secondary target of this event, if any. Read more

[src]

Returns the X position of the pointer in screen coordinates. Read more

[src]

Returns the Y position of the pointer in screen coordinates. Read more

[src]

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

impl IPointerEvent for PointerDownEvent
[src]

[src]

Returns a unique identifier for the pointer causing the event. Read more

[src]

Returns the width, in CSS pixels, of the contact geometry of the pointer. Read more

[src]

Returns the height, in CSS pixels, of the contact geometry of the pointer. Read more

[src]

Returns the normalized pressure of the pointer in the range [0, 1] Read more

[src]

Returns the normalized tangential pressure of the pointer in the range [-1, 1], where 0 is the hardware's neutral position Read more

[src]

Returns the angle, in the range of [-90, 90] degrees, between the Y-Z plane and the plane containing the transducer (e.g. pen stylus) and the Y axis. Read more

[src]

Returns the angle, in the range of [-90, 90] degrees, between the X-Z plane and the plane containing the transducer (e.g. pen stylus) and the X axis. Read more

[src]

Returns the clockwise rotation, in the range of [0, 359] degrees, of the transducer (e.g. pen stylus) around it's own major axis Read more

[src]

Indicates the device type that caused the event. Read more

[src]

Indicates if the pointer represents the primary pointer of this pointer type Read more

impl ConcreteEvent for PointerDownEvent
[src]

EVENT_TYPE: &'static str = "pointerdown"

A string representing the event type. Read more

Auto Trait Implementations