pub struct DragAndDropPoint {
pub screen: Option<Point>,
pub local: Point,
}Expand description
Where a transfer is: on the screen when the platform knows window positions, and in the source’s surface always.
Fields§
§screen: Option<Point>The pointer on the screen, in logical pixels, when known.
local: PointThe pointer in the surface that holds the press.
Trait Implementations§
Source§impl Clone for DragAndDropPoint
impl Clone for DragAndDropPoint
Source§fn clone(&self) -> DragAndDropPoint
fn clone(&self) -> DragAndDropPoint
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 DragAndDropPoint
Source§impl Debug for DragAndDropPoint
impl Debug for DragAndDropPoint
Source§impl PartialEq for DragAndDropPoint
impl PartialEq for DragAndDropPoint
impl StructuralPartialEq for DragAndDropPoint
Auto Trait Implementations§
impl Freeze for DragAndDropPoint
impl RefUnwindSafe for DragAndDropPoint
impl Send for DragAndDropPoint
impl Sync for DragAndDropPoint
impl Unpin for DragAndDropPoint
impl UnsafeUnpin for DragAndDropPoint
impl UnwindSafe for DragAndDropPoint
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