| 41 | |
| 42 | #[derive(Default)] |
| 43 | pub struct Rect { |
| 44 | pub position: Point, |
| 45 | pub width: i16, |
| 46 | pub height: i16, |
| 47 | } |
| 48 | |
| 49 | impl Rect { |
| 50 | pub const fn new(position: Point, width: i16, height: i16) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected