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>,
},
}
Expand description
Possible events generated during a drag’n’drop session
Variants
Enter
Fields
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
A new drag’n’drop entered your surfaces
Motion
Fields
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
The drag’n’drop offer moved on the surface
Leave
The drag’n’drop offer left your surface
Drop
Fields
The drag’n’drop was dropped on your surface
Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more