summaryrefslogtreecommitdiff
path: root/examples/05-list/output/rust/src/point.rs
blob: d80a831b2bf838c15fcc7d1eeba823ca45380b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Generated by hobgoblin.

#[derive(Debug, PartialEq)]
pub struct Path {
    pub points: ::std::vec::Vec::<crate::point::Point>,
}

#[derive(Debug, PartialEq)]
pub struct Point {
    pub x: ::core::primitive::i32,
    pub y: ::core::primitive::i32,
}