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

pub struct MouseOutEvent(_);

The MouseOutEvent is fired when a pointing device (usually a mouse) is moved off the element that has the listener attached or off one of its children.

(JavaScript docs)

Trait Implementations

impl Clone for MouseOutEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MouseOutEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for MouseOutEvent
[src]

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

This method tests for !=.

impl Eq for MouseOutEvent
[src]

impl InstanceOf for MouseOutEvent
[src]

Checks whenever a given Reference if of type Self.

impl AsRef<Reference> for MouseOutEvent
[src]

Performs the conversion.

impl ReferenceType for MouseOutEvent
[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<MouseOutEvent> for Reference
[src]

Performs the conversion.

impl TryFrom<MouseOutEvent> for Reference
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl TryFrom<Reference> for MouseOutEvent
[src]

The type returned in the event of a conversion error.

Performs the conversion.

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

The type returned in the event of a conversion error.

Performs the conversion.

impl TryFrom<Value> for MouseOutEvent
[src]

The type returned in the event of a conversion error.

Performs the conversion.

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

The type returned in the event of a conversion error.

Performs the conversion.

impl JsSerialize for MouseOutEvent
[src]

impl IEvent for MouseOutEvent
[src]

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

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

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

Indicates whether the event is cancelable. Read more

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

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

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

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

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

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

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

Indicates whether the event was generated by a user action.

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

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

impl IUiEvent for MouseOutEvent
[src]

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

Returns the WindowProxy that generated the event. Read more

impl IMouseEvent for MouseOutEvent
[src]

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

Indicates the mouse button that fired this event. Read more

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl ConcreteEvent for MouseOutEvent
[src]

EVENT_TYPE: &'static str = "mouseout"

A string representing the event type. Read more

Auto Trait Implementations