pub type IntRect = Rect<i32>;Expand description
A Rect of i32.
Aliased Type§
#[repr(C)]pub struct IntRect {
pub left: i32,
pub top: i32,
pub width: i32,
pub height: i32,
}Fields§
§left: i32Left coordinate of the rectangle.
top: i32Top coordinate of the rectangle.
width: i32Width of the rectangle.
height: i32Height of the rectangle.