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

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

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