[−][src]Struct stdweb::web::event::DragEndEvent
The dragend event is fired when a drag operation is being ended (by releasing a mouse button or hitting the escape key).
Trait Implementations
impl JsSerialize for DragEndEvent[src]
impl TryFrom<DragRelatedEvent> for DragEndEvent[src]
type Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: DragRelatedEvent) -> Result<Self, Self::Error>[src]
impl TryFrom<DragEndEvent> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: DragEndEvent) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for DragEndEvent[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 DragEndEvent[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 DragEndEvent[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 DragEndEvent[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 DragEndEvent[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for DragEndEvent[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl IEvent for DragEndEvent[src]
fn bubbles(&self) -> bool[src]
Indicates whether this event bubbles upward through the DOM. Read more
fn cancel_bubble(&self) -> bool[src]
A historical alias to Event.stopPropagation(). Read more
fn set_cancel_bubble(&self, value: bool)[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
fn cancelable(&self) -> bool[src]
Indicates whether the event is cancelable. Read more
fn current_target(&self) -> Option<EventTarget>[src]
A reference to the currently registered target of this event. Read more
fn default_prevented(&self) -> bool[src]
Indicates whether preventDefault has been called on this event. Read more
fn event_phase(&self) -> EventPhase[src]
Indicates which phase of event flow is currently being evaluated. Read more
fn stop_immediate_propagation(&self)[src]
Prevents any further listeners from being called for this event. Read more
fn stop_propagation(&self)[src]
Stops the propagation of this event to descendants in the DOM. Read more
fn target(&self) -> Option<EventTarget>[src]
Returns a reference to the target to which this event was originally registered. Read more
fn time_stamp(&self) -> Option<f64>[src]
Returns the time in milliseconds at which this event was created. Read more
fn is_trusted(&self) -> bool[src]
Indicates whether the event was generated by a user action.
fn event_type(&self) -> String[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
fn prevent_default(&self)[src]
Cancels the event if it is cancelable, without stopping further propagation of the event. Read more
impl ConcreteEvent for DragEndEvent[src]
const EVENT_TYPE: &'static str[src]
impl IUiEvent for DragEndEvent[src]
fn detail(&self) -> i32[src]
Provides the current click count for this event, if applicable. Read more
fn view(&self) -> Option<Window>[src]
Returns the WindowProxy that generated the event. Read more
impl IDragEvent for DragEndEvent[src]
fn data_transfer(&self) -> Option<DataTransfer>[src]
The DataEvent.dataTransfer property holds the drag operation's data (as a DataTransfer object). Read more
impl IMouseEvent for DragEndEvent[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 AsRef<Reference> for DragEndEvent[src]
impl From<DragEndEvent> for DragRelatedEvent[src]
fn from(value: DragEndEvent) -> Self[src]
impl From<DragEndEvent> for Reference[src]
fn from(value: DragEndEvent) -> Self[src]
impl PartialEq<DragEndEvent> for DragEndEvent[src]
fn eq(&self, other: &DragEndEvent) -> bool[src]
fn ne(&self, other: &DragEndEvent) -> bool[src]
impl Eq for DragEndEvent[src]
impl Clone for DragEndEvent[src]
fn clone(&self) -> DragEndEvent[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for DragEndEvent[src]
Auto Trait Implementations
impl Send for DragEndEvent
impl Sync for DragEndEvent
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
try_from)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> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,