pub enum DragEvent {
Picked {
pane: Pane,
},
Dropped {
pane: Pane,
target: Target,
},
Canceled {
pane: Pane,
},
}Expand description
An event produced during a drag and drop interaction of a PaneGrid.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DragEvent
impl RefUnwindSafe for DragEvent
impl Send for DragEvent
impl Sync for DragEvent
impl Unpin for DragEvent
impl UnsafeUnpin for DragEvent
impl UnwindSafe for DragEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more