pub struct PathPoint {
pub x: f64,
pub y: f64,
}Expand description
A 2-D point in path space (f64 coordinates, matching SplashPathPoint).
Fields§
§x: f64Horizontal coordinate.
y: f64Vertical coordinate.
Implementations§
Trait Implementations§
impl Copy for PathPoint
impl StructuralPartialEq for PathPoint
Auto Trait Implementations§
impl Freeze for PathPoint
impl RefUnwindSafe for PathPoint
impl Send for PathPoint
impl Sync for PathPoint
impl Unpin for PathPoint
impl UnsafeUnpin for PathPoint
impl UnwindSafe for PathPoint
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