pub enum DragEventType {
DragEnter,
DragOver,
Drop,
DragCancel,
}Expand description
Type of drag event.
Variants§
Trait Implementations§
Source§impl Clone for DragEventType
impl Clone for DragEventType
Source§fn clone(&self) -> DragEventType
fn clone(&self) -> DragEventType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DragEventType
impl Debug for DragEventType
Source§impl Serialize for DragEventType
impl Serialize for DragEventType
impl Copy for DragEventType
Auto Trait Implementations§
impl Freeze for DragEventType
impl RefUnwindSafe for DragEventType
impl Send for DragEventType
impl Sync for DragEventType
impl Unpin for DragEventType
impl UnwindSafe for DragEventType
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