summaryrefslogtreecommitdiff
path: root/examples/03-list/output/rust/src/point.rs
blob: 25effb2f8960b9f98afb0da429fe98558382f90c (plain)
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,
}