pub type Size = Size2D<u32, u32>;Expand description
Alias for euclid’s Size2D of 2 unsigned 32-bit integers
Aliased Type§
#[repr(C)]pub struct Size {
pub width: u32,
pub height: u32,
}Fields§
§width: u32The extent of the element in the U units along the x axis (usually horizontal).
height: u32The extent of the element in the U units along the y axis (usually vertical).