#[repr(u32)]pub enum DragDropEffects {
None = 0,
Copy = 1,
Move = 2,
Link = 4,
}Variants§
Trait Implementations§
Source§impl Clone for DragDropEffects
impl Clone for DragDropEffects
Source§fn clone(&self) -> DragDropEffects
fn clone(&self) -> DragDropEffects
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 DragDropEffects
Source§impl Debug for DragDropEffects
impl Debug for DragDropEffects
Source§impl Default for DragDropEffects
impl Default for DragDropEffects
Source§fn default() -> DragDropEffects
fn default() -> DragDropEffects
Returns the “default value” for a type. Read more
impl Eq for DragDropEffects
Source§impl PartialEq for DragDropEffects
impl PartialEq for DragDropEffects
impl StructuralPartialEq for DragDropEffects
Auto Trait Implementations§
impl Freeze for DragDropEffects
impl RefUnwindSafe for DragDropEffects
impl Send for DragDropEffects
impl Sync for DragDropEffects
impl Unpin for DragDropEffects
impl UnsafeUnpin for DragDropEffects
impl UnwindSafe for DragDropEffects
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