// Generated by hobgoblin. /// A straight line from one point to another. #[derive(Clone, Debug, Hash, PartialEq)] pub struct Line { pub start: ::std::boxed::Box::, pub end: ::std::boxed::Box::, } /// A 2D point. #[derive(Clone, Debug, Hash, PartialEq)] pub struct Point { pub x: ::core::primitive::i32, pub y: ::core::primitive::i32, }