Struct stdweb::web::event::MouseOverEvent [−][src]
pub struct MouseOverEvent(_);
The MouseOverEvent is fired when a pointing device (usually a mouse)
is moved onto the element that has the listener attached or onto one of its children.
Trait Implementations
impl Clone for MouseOverEvent[src]
impl Clone for MouseOverEventfn clone(&self) -> MouseOverEvent[src]
fn clone(&self) -> MouseOverEventReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for MouseOverEvent[src]
impl Debug for MouseOverEventfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for MouseOverEvent[src]
impl PartialEq for MouseOverEventfn eq(&self, other: &MouseOverEvent) -> bool[src]
fn eq(&self, other: &MouseOverEvent) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &MouseOverEvent) -> bool[src]
fn ne(&self, other: &MouseOverEvent) -> boolThis method tests for !=.
impl Eq for MouseOverEvent[src]
impl Eq for MouseOverEventimpl InstanceOf for MouseOverEvent[src]
impl InstanceOf for MouseOverEventfn instance_of(reference: &Reference) -> bool[src]
fn instance_of(reference: &Reference) -> boolChecks whenever a given Reference if of type Self.
impl AsRef<Reference> for MouseOverEvent[src]
impl AsRef<Reference> for MouseOverEventimpl ReferenceType for MouseOverEvent[src]
impl ReferenceType for MouseOverEventunsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
unsafe fn from_reference_unchecked(reference: Reference) -> SelfConverts a given reference into a concrete reference-like wrapper. Doesn't do any type checking; highly unsafe to use! Read more
impl From<MouseOverEvent> for Reference[src]
impl From<MouseOverEvent> for Referencefn from(value: MouseOverEvent) -> Self[src]
fn from(value: MouseOverEvent) -> SelfPerforms the conversion.
impl TryFrom<MouseOverEvent> for Reference[src]
impl TryFrom<MouseOverEvent> for Referencetype Error = Void
The type returned in the event of a conversion error.
fn try_from(value: MouseOverEvent) -> Result<Self, Self::Error>[src]
fn try_from(value: MouseOverEvent) -> Result<Self, Self::Error>Performs the conversion.
impl TryFrom<Reference> for MouseOverEvent[src]
impl TryFrom<Reference> for MouseOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: Reference) -> Result<Self, Self::Error>[src]
fn try_from(reference: Reference) -> Result<Self, Self::Error>Performs the conversion.
impl<'_r> TryFrom<&'_r Reference> for MouseOverEvent[src]
impl<'_r> TryFrom<&'_r Reference> for MouseOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: &Reference) -> Result<Self, Self::Error>[src]
fn try_from(reference: &Reference) -> Result<Self, Self::Error>Performs the conversion.
impl TryFrom<Value> for MouseOverEvent[src]
impl TryFrom<Value> for MouseOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>[src]
fn try_from(value: Value) -> Result<Self, Self::Error>Performs the conversion.
impl<'_r> TryFrom<&'_r Value> for MouseOverEvent[src]
impl<'_r> TryFrom<&'_r Value> for MouseOverEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error>[src]
fn try_from(value: &Value) -> Result<Self, Self::Error>Performs the conversion.
impl JsSerialize for MouseOverEvent[src]
impl JsSerialize for MouseOverEventimpl IEvent for MouseOverEvent[src]
impl IEvent for MouseOverEventfn bubbles(&self) -> bool[src]
fn bubbles(&self) -> boolIndicates whether this event bubbles upward through the DOM. Read more
fn cancel_bubble(&self) -> bool[src]
fn cancel_bubble(&self) -> boolA historical alias to Event.stopPropagation(). Read more
fn set_cancel_bubble(&self, value: bool)[src]
fn set_cancel_bubble(&self, value: bool)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]
fn cancelable(&self) -> boolIndicates whether the event is cancelable. Read more
fn current_target(&self) -> Option<EventTarget>[src]
fn current_target(&self) -> Option<EventTarget>A reference to the currently registered target of this event. Read more
fn default_prevented(&self) -> bool[src]
fn default_prevented(&self) -> boolIndicates whether preventDefault has been called on this event. Read more
fn event_phase(&self) -> EventPhase[src]
fn event_phase(&self) -> EventPhaseIndicates which phase of event flow is currently being evaluated. Read more
fn stop_immediate_propagation(&self)[src]
fn stop_immediate_propagation(&self)Prevents any further listeners from being called for this event. Read more
fn stop_propagation(&self)[src]
fn stop_propagation(&self)Stops the propagation of this event to descendants in the DOM. Read more
fn target(&self) -> Option<EventTarget>[src]
fn target(&self) -> Option<EventTarget>Returns a reference to the target to which this event was originally registered. Read more
fn time_stamp(&self) -> Option<f64>[src]
fn time_stamp(&self) -> Option<f64>Returns the time in milliseconds at which this event was created. Read more
fn is_trusted(&self) -> bool[src]
fn is_trusted(&self) -> boolIndicates whether the event was generated by a user action.
fn event_type(&self) -> String[src]
fn event_type(&self) -> StringReturns 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]
fn prevent_default(&self)Cancels the event if it is cancelable, without stopping further propagation of the event. Read more
impl IUiEvent for MouseOverEvent[src]
impl IUiEvent for MouseOverEventfn detail(&self) -> i32[src]
fn detail(&self) -> i32Provides the current click count for this event, if applicable. Read more
fn view(&self) -> Option<Window>[src]
fn view(&self) -> Option<Window>Returns the WindowProxy that generated the event. Read more
impl IMouseEvent for MouseOverEvent[src]
impl IMouseEvent for MouseOverEventfn alt_key(&self) -> bool[src]
fn alt_key(&self) -> boolReturns 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
fn client_x(&self) -> i32[src]
fn client_x(&self) -> i32Returns the X position in the application's client area where this event occured. Read more
fn client_y(&self) -> i32[src]
fn client_y(&self) -> i32Returns the Y position in the application's client area where this event occured. Read more
fn offset_x(&self) -> f64[src]
fn offset_x(&self) -> f64Returns the X position on the target element where this event occured. Read more
fn offset_y(&self) -> f64[src]
fn offset_y(&self) -> f64Returns the Y position on the target element where this event occured. Read more
fn ctrl_key(&self) -> bool[src]
fn ctrl_key(&self) -> boolIndicates whether the Ctrl key was down when this event fired. Read more
fn get_modifier_state(&self, key: ModifierKey) -> bool[src]
fn get_modifier_state(&self, key: ModifierKey) -> boolReturns the current state of the specified modifier key. Read more
fn meta_key(&self) -> bool[src]
fn meta_key(&self) -> boolIndicates whether the Meta key was down when this event fired. Read more
fn movement_x(&self) -> i32[src]
fn movement_x(&self) -> i32Returns the change in X coordinate of the pointer between this event and the previous MouseMove event. Read more
fn movement_y(&self) -> i32[src]
fn movement_y(&self) -> i32Returns the change in Y coordinate of the pointer between this event and the previous MouseMove event. Read more
fn region(&self) -> Option<String>[src]
fn region(&self) -> Option<String>Returns the ID of the hit region affected by the event. Read more
Returns the secondary target of this event, if any. Read more
fn screen_x(&self) -> i32[src]
fn screen_x(&self) -> i32Returns the X position of the pointer in screen coordinates. Read more
fn screen_y(&self) -> i32[src]
fn screen_y(&self) -> i32Returns the Y position of the pointer in screen coordinates. Read more
fn shift_key(&self) -> bool[src]
fn shift_key(&self) -> boolIndicates whether the Shift key was down when this event was fired. Read more
impl ConcreteEvent for MouseOverEvent[src]
impl ConcreteEvent for MouseOverEventconst EVENT_TYPE: &'static str
EVENT_TYPE: &'static str = "mouseover"
A string representing the event type. Read more
Auto Trait Implementations
impl Send for MouseOverEvent
impl Send for MouseOverEventimpl Sync for MouseOverEvent
impl Sync for MouseOverEvent