[][src]Enum stdweb::web::event::DropEffect

pub enum DropEffect {
    Copy,
    Move,
    Link,
    None,
}

A DOMString representing the drag operation effect.

Variants

Copy

A copy of the source item is made at the new location

Move

An item is moved to a new location.

A link is established to the source at the new location.

None

The item may not be dropped.

Trait Implementations

impl Clone for DropEffect[src]

impl Copy for DropEffect[src]

impl Eq for DropEffect[src]

impl PartialEq<DropEffect> for DropEffect[src]

impl Debug for DropEffect[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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