pub enum DragAndDropOutcome {
Dropped,
Missed,
Cancelled,
}Expand description
How a transfer ended, as the source hears it.
Variants§
Dropped
A target accepted the drop.
Missed
The pointer was released over no target, or the target declined.
Cancelled
The gesture was cancelled before a release.
Trait Implementations§
Source§impl Clone for DragAndDropOutcome
impl Clone for DragAndDropOutcome
Source§fn clone(&self) -> DragAndDropOutcome
fn clone(&self) -> DragAndDropOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DragAndDropOutcome
Source§impl Debug for DragAndDropOutcome
impl Debug for DragAndDropOutcome
impl Eq for DragAndDropOutcome
Source§impl PartialEq for DragAndDropOutcome
impl PartialEq for DragAndDropOutcome
impl StructuralPartialEq for DragAndDropOutcome
Auto Trait Implementations§
impl Freeze for DragAndDropOutcome
impl RefUnwindSafe for DragAndDropOutcome
impl Send for DragAndDropOutcome
impl Sync for DragAndDropOutcome
impl Unpin for DragAndDropOutcome
impl UnsafeUnpin for DragAndDropOutcome
impl UnwindSafe for DragAndDropOutcome
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