pub struct DragData {
pub items: Vec<DragDataItem>,
pub drag_operations_mask: Option<i32>,
}Expand description
Drag data.
Fields§
§items: Vec<DragDataItem>Items in the drag data.
drag_operations_mask: Option<i32>Drag operations mask.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DragData
impl RefUnwindSafe for DragData
impl Send for DragData
impl Sync for DragData
impl Unpin for DragData
impl UnwindSafe for DragData
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