pub type Size<L> = Size2D<L, UnknownUnit>;Expand description
Size.
Aliased Type§
struct Size<L> {
pub width: L,
pub height: L,
}Fields§
§width: LThe extent of the element in the U units along the x axis (usually horizontal).
height: LThe extent of the element in the U units along the y axis (usually vertical).