summaryrefslogtreecommitdiff
path: root/examples/01-struct/output/rust/src/point.rs
blob: aa90e197d18e5298121d28a4f6741c2bbbe8f1f3 (plain)
1
2
3
4
5
6
7
8
9
pub struct Line {
    pub start: Point,
    pub end: Point,
}

pub struct Point {
    pub x: i32,
    pub y: i32,
}