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