pub type Point = Point2D<u32, u32>;
Alias for euclid’s Point2D of 2 unsigned 32-bit integers
#[repr(C)]pub struct Point { pub x: u32, pub y: u32, }
x: u32
y: u32