| 18 | |
| 19 | #[derive(Clone, Copy, Debug)] |
| 20 | pub struct Rect { |
| 21 | pub x: i32, |
| 22 | pub y: i32, |
| 23 | pub width: i32, |
| 24 | pub height: i32, |
| 25 | } |
| 26 | |
| 27 | impl Rect { |
| 28 | pub fn new(x: i32, y: i32, width: i32, height: i32) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected