[][src]Enum smithay_client_toolkit::data_device::DndEvent

pub enum DndEvent<'a> {
    Enter {
        offer: Option<&'a DataOffer>,
        serial: u32,
        surface: WlSurface,
        x: f64,
        y: f64,
    },
    Motion {
        offer: Option<&'a DataOffer>,
        time: u32,
        x: f64,
        y: f64,
    },
    Leave,
    Drop {
        offer: Option<&'a DataOffer>,
    },
}

Possible events generated during a drag'n'drop session

Variants

Enter

A new drag'n'drop entered your surfaces

Fields of Enter

offer: Option<&'a DataOffer>

The associated data offer

Is None if it is an internal drag'n'drop you started with no source. See DataDevice::start_drag for details.

serial: u32

A serial associated with the entry of this dnd

surface: WlSurface

The entered surface

x: f64

horizontal location on the surface

y: f64

vertical location on the surface

Motion

The drag'n'drop offer moved on the surface

Fields of Motion

offer: Option<&'a DataOffer>

The associated data offer

Is None if it is an internal drag'n'drop you started with no source. See DataDevice::start_drag for details.

time: u32

The time of this motion

x: f64

new horizontal location

y: f64

new vertical location

Leave

The drag'n'drop offer left your surface

Drop

The drag'n'drop was dropped on your surface

Fields of Drop

offer: Option<&'a DataOffer>

The associated data offer

Is None if it is an internal drag'n'drop you started with no source. See DataDevice::start_drag for details.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for DndEvent<'a>

impl<'a> Send for DndEvent<'a>

impl<'a> Sync for DndEvent<'a>

impl<'a> Unpin for DndEvent<'a>

impl<'a> !UnwindSafe for DndEvent<'a>

Blanket Implementations

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

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

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

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

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

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.