pub struct Point<T> {
pub x: T,
pub y: T,
}
Expand description
A 2D point representation.
Fields§
§x: T
Position along the X-axis.
y: T
Position along the Y-axis.
Implementations§
Trait Implementations§
impl<T: Copy> Copy for Point<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Point<T>where T: RefUnwindSafe,
impl<T> Send for Point<T>where T: Send,
impl<T> Sync for Point<T>where T: Sync,
impl<T> Unpin for Point<T>where T: Unpin,
impl<T> UnwindSafe for Point<T>where T: UnwindSafe,
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