1 2 3 4 5 6 7 8
pub struct Path { pub points: std::vec::Vec<Point>, } pub struct Point { pub x: i32, pub y: i32, }