[][src]Struct yew::prelude::DragEnterEvent

pub struct DragEnterEvent(_);

The dragenter event is fired when a dragged element or text selection enters a valid drop target.

(JavaScript docs)

Trait Implementations

impl Eq for DragEnterEvent[src]

impl InstanceOf for DragEnterEvent[src]

impl JsSerialize for DragEnterEvent[src]

impl Clone for DragEnterEvent[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<DragEnterEvent> for DragEnterEvent[src]

impl ReferenceType for DragEnterEvent[src]

impl AsRef<Reference> for DragEnterEvent[src]

impl IMouseEvent for DragEnterEvent[src]

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

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

fn button(&self) -> MouseButton[src]

Indicates the mouse button that fired this event. Read more

fn buttons(&self) -> MouseButtonsState[src]

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

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

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

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

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

fn offset_x(&self) -> f64[src]

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

fn offset_y(&self) -> f64[src]

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

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

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

fn get_modifier_state(&self, key: ModifierKey) -> bool[src]

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

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

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

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

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

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

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

fn region(&self) -> Option<String>[src]

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

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

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

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

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

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

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

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

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

impl Debug for DragEnterEvent[src]

Auto Trait Implementations

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 = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Any for T where
    T: Any
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]