#[repr(C)]pub struct dim3 {
pub x: u32,
pub y: u32,
pub z: u32,
}Expand description
Struct for data in 3D
Fields§
§x: u32< x
y: u32< y
z: u32< z
Trait Implementations§
source§impl Ord for dim3
impl Ord for dim3
source§impl PartialEq<dim3> for dim3
impl PartialEq<dim3> for dim3
source§impl PartialOrd<dim3> for dim3
impl PartialOrd<dim3> for dim3
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for dim3
impl Eq for dim3
impl StructuralEq for dim3
impl StructuralPartialEq for dim3
Auto Trait Implementations§
impl RefUnwindSafe for dim3
impl Send for dim3
impl Sync for dim3
impl Unpin for dim3
impl UnwindSafe for dim3
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