#[repr(transparent)]pub struct DragDropModifiers(pub u32);
Expand description
Required features: "ApplicationModel_DataTransfer_DragDrop"
Tuple Fields
0: u32
Implementations
impl DragDropModifiers
impl DragDropModifiers
pub const None: Self = Self(0u32)
pub const Shift: Self = Self(1u32)
pub const Control: Self = Self(2u32)
pub const Alt: Self = Self(4u32)
pub const LeftButton: Self = Self(8u32)
pub const MiddleButton: Self = Self(16u32)
pub const RightButton: Self = Self(32u32)
Trait Implementations
impl Clone for DragDropModifiers
impl Clone for DragDropModifiers
impl Copy for DragDropModifiers
Auto Trait Implementations
impl RefUnwindSafe for DragDropModifiers
impl Send for DragDropModifiers
impl Sync for DragDropModifiers
impl Unpin for DragDropModifiers
impl UnwindSafe for DragDropModifiers
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