#[repr(C)]pub struct dim3 {
pub x: c_uint,
pub y: c_uint,
pub z: c_uint,
}Expand description
Three-dimensional dim3 used for grid/block sizes.
Fields§
§x: c_uint§y: c_uint§z: c_uintImplementations§
Trait Implementations§
impl Copy for dim3
impl Eq for dim3
impl StructuralPartialEq for dim3
Auto Trait Implementations§
impl Freeze for dim3
impl RefUnwindSafe for dim3
impl Send for dim3
impl Sync for dim3
impl Unpin for dim3
impl UnsafeUnpin 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