pub struct Coords {
pub x: f64,
pub y: f64,
}
Expand description
A x,y Coordinates pair.
Fields§
§x: f64
horizontal coordinate input projection unit.
y: f64
vertical coordinate input projection unit.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Coords
Auto Trait Implementations§
impl Freeze for Coords
impl RefUnwindSafe for Coords
impl Send for Coords
impl Sync for Coords
impl Unpin for Coords
impl UnwindSafe for Coords
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