pub type Size3D<T> = Size3D<T, UnknownUnit>;
Aliased Type§
struct Size3D<T> {
pub width: T,
pub height: T,
pub depth: T,
/* private fields */
}
Fields§
§width: T
The extent of the element in the U
units along the x
axis.
height: T
The extent of the element in the U
units along the y
axis.
depth: T
The extent of the element in the U
units along the z
axis.