[−][src]Struct stdweb::web::event::DragEnterEvent
The dragenter event is fired when a dragged element or text selection enters a valid drop target.
Trait Implementations
impl JsSerialize for DragEnterEvent[src]
impl TryFrom<DragRelatedEvent> for DragEnterEvent[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<DragEnterEvent> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: DragEnterEvent) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for DragEnterEvent[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 DragEnterEvent[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 DragEnterEvent[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 DragEnterEvent[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 DragEnterEvent[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for DragEnterEvent[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl IEvent for DragEnterEvent[src]
fn bubbles(&self) -> bool[src]
fn cancel_bubble(&self) -> bool[src]
fn set_cancel_bubble(&self, value: bool)[src]
fn cancelable(&self) -> bool[src]
fn current_target(&self) -> Option<EventTarget>[src]
fn default_prevented(&self) -> bool[src]
fn event_phase(&self) -> EventPhase[src]
fn stop_immediate_propagation(&self)[src]
fn stop_propagation(&self)[src]
fn target(&self) -> Option<EventTarget>[src]
fn time_stamp(&self) -> Option<f64>[src]
fn is_trusted(&self) -> bool[src]
fn event_type(&self) -> String[src]
fn prevent_default(&self)[src]
impl ConcreteEvent for DragEnterEvent[src]
const EVENT_TYPE: &'static str[src]
impl IUiEvent for DragEnterEvent[src]
impl IDragEvent for DragEnterEvent[src]
fn data_transfer(&self) -> Option<DataTransfer>[src]
impl IMouseEvent for DragEnterEvent[src]
fn alt_key(&self) -> bool[src]
fn button(&self) -> MouseButton[src]
fn buttons(&self) -> MouseButtonsState[src]
fn client_x(&self) -> i32[src]
fn client_y(&self) -> i32[src]
fn offset_x(&self) -> f64[src]
fn offset_y(&self) -> f64[src]
fn ctrl_key(&self) -> bool[src]
fn get_modifier_state(&self, key: ModifierKey) -> bool[src]
fn meta_key(&self) -> bool[src]
fn movement_x(&self) -> i32[src]
fn movement_y(&self) -> i32[src]
fn region(&self) -> Option<String>[src]
fn related_target(&self) -> Option<EventTarget>[src]
fn screen_x(&self) -> i32[src]
fn screen_y(&self) -> i32[src]
fn shift_key(&self) -> bool[src]
impl Eq for DragEnterEvent[src]
impl Clone for DragEnterEvent[src]
fn clone(&self) -> DragEnterEvent[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl AsRef<Reference> for DragEnterEvent[src]
impl PartialEq<DragEnterEvent> for DragEnterEvent[src]
fn eq(&self, other: &DragEnterEvent) -> bool[src]
fn ne(&self, other: &DragEnterEvent) -> bool[src]
impl From<DragEnterEvent> for DragRelatedEvent[src]
fn from(value: DragEnterEvent) -> Self[src]
impl From<DragEnterEvent> for Reference[src]
fn from(value: DragEnterEvent) -> Self[src]
impl Debug for DragEnterEvent[src]
Auto Trait Implementations
impl Send for DragEnterEvent
impl Unpin for DragEnterEvent
impl Sync for DragEnterEvent
impl UnwindSafe for DragEnterEvent
impl RefUnwindSafe for DragEnterEvent
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
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, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,