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

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

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