pub type Rectangle = Rectangle;
#[repr(C)]pub struct Rectangle { pub start_x: u32, pub end_x: u32, pub start_y: u32, pub end_y: u32, }
start_x: u32
end_x: u32
start_y: u32
end_y: u32