| 10 | Clone, Copy, Debug, Default, PartialEq, Eq, Serialize, Deserialize, OwnedValue, Type, Value, |
| 11 | )] |
| 12 | pub struct Rect { |
| 13 | pub x: i32, |
| 14 | pub y: i32, |
| 15 | pub width: i32, |
| 16 | pub height: i32, |
| 17 | } |
| 18 | |
| 19 | impl Rect { |
| 20 | pub const INVALID: Rect = Rect { |
no outgoing calls
no test coverage detected