pub struct Size3D {
pub w: u32,
pub h: u32,
pub d: u32,
}Expand description
A 3D size with non-negative integer dimensions.
Fields§
§w: u32§h: u32§d: u32Implementations§
Trait Implementations§
Source§impl Components<u32, 3> for Size3D
impl Components<u32, 3> for Size3D
impl Copy for Size3D
impl StructuralPartialEq for Size3D
Auto Trait Implementations§
impl Freeze for Size3D
impl RefUnwindSafe for Size3D
impl Send for Size3D
impl Sync for Size3D
impl Unpin for Size3D
impl UnsafeUnpin for Size3D
impl UnwindSafe for Size3D
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more