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