pub struct Point {
pub x: f64,
pub y: f64,
}
Fields§
§x: f64
The horizontal (X) coordinate.
y: f64
The vertical (Y) coordinate.
Implementations§
Trait Implementations§
Source§impl From<Point> for DispatchMouseEventParams
Converts a point into Left-Down-Single-Mouseclick
impl From<Point> for DispatchMouseEventParams
Converts a point into Left-Down-Single-Mouseclick
Source§fn from(el: Point) -> DispatchMouseEventParams
fn from(el: Point) -> DispatchMouseEventParams
Converts to this type from the input type.
impl Copy for Point
impl StructuralPartialEq for Point
Auto Trait Implementations§
impl Freeze for Point
impl RefUnwindSafe for Point
impl Send for Point
impl Sync for Point
impl Unpin for Point
impl UnwindSafe for Point
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